summaryrefslogtreecommitdiffstats
path: root/templates/admin/settings.html
blob: e031347417102b6427326f755579896d4ac0b729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}

{% block title %}{{ section.title }} - Admin{% endblock %}

{% block content %}
    {% block menu %}
        {% include "admin/_menu.html" %}
    {% endblock %}
    <form action="." method="POST">
        {% csrf_token %}
        {% for field in form %}
            {% include "forms/_field.html" %}
        {% endfor %}
        <div class="buttons">
            <button>Save</button>
        </div>
    </form>
{% endblock %}