{% extends "main.html" %} {% import '_pagination.html' as pagination_macros %} {# Here it is relatively safe to assume that 'ipa' exists and is valid. We would not be here otherwise. #} {% block title %}{{ _("Group List") }}{% endblock %} {% block content %} {{ super() }}

{{ _("Group List") }}

    {% for group in groups.items %}
  • {% if group.description %}
    {{ group.description }}
    {% endif %}
    {{ _('%(member_count)s members', member_count=group.members|length|default(0)) }}
  • {% endfor %}
{% if groups.items|count == 0 %}

{{ _("No groups.") }}

{% endif %} {{ pagination_macros.pagination_bar(groups) }}
{% endblock %}