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

{% trans "Edit group" %}

Cancel

Name
{{ group.name }}
Description
{{ group.description|default:"no description" }}
{% csrf_token %}

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


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

{% endfor %}

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

{% endblock %}