{% load i18n %} {% if namespace_error and request.user.is_superuser or request.user.is_staff %}
{{ namespace_error }}
{% endif %} {% if not people_groups %} {# if grouping is disabled, list only people #} {% for person in people %} {% include "aldryn_people/includes/person.html" with person=person %} {% endfor %} {% else %} {# if enabled, we group the people by categories defined #} {% language instance.language %} {# IMPORTANT: first show people with a group #} {% for group, people_list in people_groups.items %} {% if group.name %} {% include "aldryn_people/includes/group.html" %} {% for person in people_list %} {% include "aldryn_people/includes/person.html" with person=person group="true" %} {% endfor %} {% endif %} {% endfor %} {# IMPORTANT: and than the remaining, if any #} {% if groupless_people.count %}