{% extends "admin/layout.html" %} {% load i18n %} {% load url from future %} {% from "admin/macros.html" import page_title, draw_message %} {% import "_forms.html" as form_theme with context %} {% block title %}{{ page_title(title=_(active_group.name), parent=_('Settings')) }}{% endblock %} {% block content %}
{% block action %}

{{ _(active_group.name) }}

{% if message %} {{ draw_message(message, 'alert-form') }} {% endif %}{% if active_group.description %}

{{ _(active_group.description) }}

{% endif %}
{{ form_theme.form_widget(form, width=9) }}
{% endblock %}
{% endblock %}