{% extends "main.html" %} {# 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 %}
  • {% if group.description %}
    {{ group.description }}
    {% endif %}
    {{ _('%(member_count)s members', member_count=group.members|length|default(0)) }}
  • {% endfor %}
{% endblock %}