{% extends "misago/admin/conf/index.html" %} {% load crispy_forms_filters i18n %} {% block title %}{% trans active_group.name %} | {{ block.super }}{% endblock %} {% block header %}
{% trans "Settings" %}
{% trans active_group.name %}
{% endblock header%} {% block action %}
{% csrf_token %}

{% trans active_group.name %}

{% if active_group.description %}

{% trans active_group.description %}

{% endif %}
{% if use_single_form_template %}
{% for field in fieldsets.0.form %} {{ field|as_crispy_field }} {% endfor %}
{% else %}
{% for fieldset in fieldsets %}
{% if fieldset.legend %} {% trans fieldset.legend %} {% endif %} {% for field in fieldset.form %} {{ field|as_crispy_field }} {% endfor %}
{% endfor %}
{% endif %}
{% endblock action %}