summaryrefslogtreecommitdiffstats
path: root/templates/settings/settings.html
blob: 016eebbfce64907f1698dc696f56d83c0d8577f8 (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 }} - Settings{% endblock %}

{% block content %}
    {% block menu %}
        {% include "settings/_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 %}