{% extends "webadmin/base.html" %} {% load i18n %} {% load markup %} {% load custom_tags %} {% block css %} {% endblock %} {% block title %}{% trans "Groups" %}{% endblock %} {% block jscript %} {% endblock %} {% block content %}

add {% trans "Add new group" %}

{% if info.message %}
{{ info.message|safe|linebreaks }}
{% endif %}

{% trans "Groups" %}

{% if controller.groupsCount %}
Loading
{% for dict in controller.groups %} {% endfor %}
{% trans "Actions" %} {% trans "Name" %} {% trans "Permissions" %} {% trans "Description" %}
{% if not dict.locked %} edit {% endif %} manage id:{{ dict.group.id }} {{ dict.group.description|default_if_none:"-"|truncatewords:"5" }}

Summary

Currently there are {{ controller.groupsCount }} groups.

{% else %}

{% trans "No groups in OMERO." %}

{% endif %} {% endblock %}