{% extends "webadmin/base.html" %} {% load i18n %} {% load common_filters %} {% comment %} {% endcomment %} {% block link %} {{ block.super }} {% endblock %} {% block title %} {% if gid %} {% trans "Edit group" %} {% else %} {% trans "Add group" %} {% endif %} {% endblock %} {% block script %} {{ block.super }} {% endblock %} {% block center_details %} {{ block.super }}
{% if gid %}

{% trans "Edit group" %}

{% else %}

{% trans "Add group" %}

{% endif %}

Cancel

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

{% trans "Fields marked in red are mandatory." %}


{% for field in form %} {% if field.errors %}
{{ field.errors }}
{% endif %} {% if field.field.required %}{{ field.label_tag }}{% else %}{{ field.label_tag }}{% endif %} {{ field }}
{{ field.help_text|safe }}

{% endfor %}

Full details on various Permissions levels can be found on the OMERO Permissions page.

{% endblock %}