{% 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 %}
{% if gid %}

{% trans "Edit group" %}

{% else %}

{% trans "Add group" %}

{% endif %}

{% trans "Permission Levels" %}

{% if access_controll or not gid %}

{% trans "WARNING: It is not possible to reduce permissions to Private. Once links have been created in the database under Collaborative (or Collaborative - Read-only) permissions, these cannot be severed. However, it is possible to promote a Private group to be Collaborative or Read-only permissions. " %}

{% endif %}
{% if gid %}
{% else %} {% endif %}

{% trans "Fields marked with an * are mandatory." %}

{% for field in form %} {% ifequal form.readonly.label_tag field.label_tag %} {% else %} {% endifequal %} {% endfor %}
{{ 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 %}