pyfedi/app/templates/admin/misc.html

25 lines
606 B
HTML
Raw Normal View History

{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
2024-12-10 12:16:52 +01:00
{% endif %}
{% from 'bootstrap/form.html' import render_form %}
2024-04-14 20:05:40 +12:00
{% set active_child = 'admin_misc' %}
{% block app_content %}
{% include 'admin/_tabbed_nav.html' %}
<br>
<div class="row">
<div class="col">
2024-04-14 20:05:40 +12:00
<h1>{{ _('Misc settings') }}</h1>
{{ render_form(form) }}
</div>
</div>
2024-04-14 20:05:40 +12:00
<hr />
<div class="row">
<div class="col">
2024-04-14 20:05:40 +12:00
{% include 'admin/_nav.html' %}
</div>
</div>
2024-04-14 20:05:40 +12:00
<hr />
{% endblock %}