{% extends "webadmin/base.html" %} {% load i18n %} {% load markup %} {% load custom_tags %} {% block title %} {% if gid %} {% trans "Edit group" %} {% else %} {% trans "Add group" %} {% endif %} {% endblock %} {% block jscript %} {% endblock %} {% block content %}

{% trans "Edit group permissions" %}

{% if gid %}
{% endif %} {% for field in form %} {% ifequal form.readonly.label_tag field.label_tag %} {% else %} {% endifequal %} {% endfor %}
Name{{ group.name }}
Description{{ group.description|default_if_none:"no description" }}
Owners{{ owners }}
{{ field }}{{ field.label_tag }}{% if field.field.required %}*{% endif %} {% if field.errors %}{{ field.errors }}{% endif %}{{ field.help_text|safe }}
{{ field.label_tag }}{% if field.field.required %}*{% endif %}{{ field }}{% if field.errors %}{{ field.errors }}{% endif %}{{ field.help_text|safe }}
 
{% endblock %}