{% extends "admin/admin/form.html" %} {% import "forms.html" as form_theme with context %} {% block form %}
{% trans %}Basic Options{% endtrans %} {{ form_theme.row(form.parent, attrs={'class': 'span12'}) }} {{ form_theme.row(form.perms, attrs={'class': 'span12'}) }} {% if 'role' in form.fields %} {{ form_theme.row(form.role, attrs={'class': 'span12'}) }} {% endif %} {{ form_theme.row(form.name, attrs={'class': 'span12'}) }} {{ form_theme.row(form.description, attrs={'class': 'span12', 'rows': 3}) }} {% if 'redirect' in form.fields %} {{ form_theme.row(form.redirect, attrs={'class': 'span12'}) }} {% endif %} {% if 'closed' in form.fields %} {{ form_theme.row(form.closed) }} {% endif %}
{% if 'prune_start' in form.fields %}
{% trans %}Prune Forums{% endtrans %} {{ form_theme.row(form.prune_start, attrs={'class': 'span12'}) }} {{ form_theme.row(form.prune_last, attrs={'class': 'span12'}) }} {{ form_theme.row(form.pruned_archive, attrs={'class': 'span12'}) }}
{% endif %}
{% trans %}Display Options{% endtrans %} {% if 'attrs' in form.fields %} {{ form_theme.row(form.attrs, attrs={'class': 'span12'}) }} {{ form_theme.row(form.show_details) }} {% endif %} {{ form_theme.row(form.style, attrs={'class': 'span12'}) }}
{% endblock %}