{% extends "base.html" %} {% load navigation_tags %} {% load authorization_tags %} {% block content %} {% load display_tags %}

{{ name }}

{% include "dojo/filter_snippet.html" with form=filtered.form %}
{% if groups %}
{% include "dojo/paging_snippet.html" with page=groups page_size=True %}
{% block header %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% endblock header %} {% for g in groups %} {% block body %} {% endblock body %} {% endfor %}
{% dojo_sort request 'Group Name' 'name' %}{% dojo_sort request 'Group Description' 'description' %}{% dojo_sort request 'Number of Users' 'users|length' %} Global Role
{{ g.name }} {{ g.description }} {{ g.users.all|length }} {% if g.global_role.role %} {{ g.global_role.role }} {% endif %}
{% include "dojo/paging_snippet.html" with page=groups page_size=True %}
{% else %}
No Groups
{% endif %}
{% endblock %} {% block postscript %} {% include "dojo/filter_js_snippet.html" %} {% endblock %}