RASCSI/python/web/src/templates/manpage.html
Daniel Markstedt 76b0f43bc1
Web UI: Inject a Go Back link on all pages, except the index and upload page (#1302)
* Move the manual and go back elements into footer; log controls in log page

* Move inline css style to stylesheet

* Touch up page layout

* Use a Home icon for going to the index page

* Use one vertical table for device info
2023-11-08 14:52:49 -08:00

12 lines
181 B
HTML

{% extends "base.html" %}
{% block content %}
<h2>{{ _("Manual for %(app)s", app=app) }}</h2>
<div id="manpage-content">
{{ manpage | safe }}
</div>
<hr/>
{% endblock content %}