{% extends "admin/base_site.html" %} {% block extrastyle %}{{ block.super }}{% include "backupgram/admin/_assets.html" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
Dashboard {% if error %} {% endif %} {# ── Save form — wraps ALL groups. Reset forms are siblings outside. ── #}
{% csrf_token %} {% for group in groups %}

{{ group.name }}

{% for it in group.items %} {% endfor %}
Key Value Source
{{ it.key }} {% if it.kind == "secret" %} {% elif it.kind == "select" %} {% elif it.kind == "number" %} {% elif it.kind == "cron" %}
{% else %} {% endif %} {% if it.help %}
{{ it.help }}
{% endif %}
{{ it.source }} {% if it.source == "override" %} {% endif %}
{% endfor %}
{# ── Per-key reset forms — siblings of the save form, never nested ── #} {% for it in items %} {% if it.source == "override" %}
{% csrf_token %}
{% endif %} {% endfor %}
{% endblock %}