{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content_title %}

Config

{% endblock %} {% block content %}
{% csrf_token %} {% for category, entries in categories.items %}
{{ category|title }}
{% for entry in entries %}
{% if entry.knob.help_text %}

{{ entry.knob.help_text }}

{% endif %}
{{ entry.knob.default }}
{{ entry.widget_html }}
{% endfor %}
{% endfor %}
{% endblock %}