{% extends 'base.html' %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Configuration" %} – {{ block.super }}{% endblock %} {% block content %}

{% trans 'Configuration' %} {% trans active_config_page.title %}
{% for config_page_dict in config_pages_list %} {% trans config_page_dict.config_page.title %} {% endfor %}

{% csrf_token %} {% for group in groups %}
{{ group.title }} {% for field in form %} {% if field.name in group.get_field_names %}
{{ field }} {% if field.errors %} {{ field.errors }} {% endif %} {% if field.help_text %} {{ field.help_text }} {% endif %}
{% endif %} {% endfor %}
{% empty %} {% include 'form.html' %} {% endfor %}

{% include 'formbuttons_save.html' %} {% trans 'Cancel' %}

* {% trans 'required' %}
{% endblock %}