mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-15 09:51:21 +00:00
Tests: - All the icons appear as before in both light/dark themes. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
23 lines
508 B
HTML
23 lines
508 B
HTML
{% extends 'help_base.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% load plinth_extras %}
|
|
|
|
{% block page_head %}
|
|
<link type="text/css" rel="stylesheet"
|
|
href="{% static 'help/help.css' %}">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<a href="{% url 'help:download-manual' %}" class="btn btn-default pdf"
|
|
role="button">
|
|
{% icon 'download' %}
|
|
{% trans 'Download as PDF' %}
|
|
</a>
|
|
{{ content|safe }}
|
|
{% endblock %}
|