mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
33 lines
679 B
HTML
33 lines
679 B
HTML
{% extends 'help_base.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block page_head %}
|
|
<style type="text/css">
|
|
dd {
|
|
margin-left: 30px;
|
|
}
|
|
.pdf {
|
|
float: right;
|
|
margin: 2rem 0;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<a href="{% url 'help:download-manual' %}" class="btn btn-default pdf"
|
|
role="button">
|
|
<span class="fa fa-download fa-fw fa-lg"></span>
|
|
{% trans 'Download as PDF' %}
|
|
</a>
|
|
{{ content|safe }}
|
|
{% endblock %}
|
|
|
|
{% block page_js %}
|
|
<script type="text/javascript" src="{% static 'help/help.js' %}"></script>
|
|
{% endblock %}
|