{% extends "base.html" %} {% load cms_tags i18n %} {% block content %}
{% static_placeholder "people_groups_top" %} {% for group in group_list %}

{% render_model group 'name' %}

{% for person in group.people.all|dictsort:"name" %} {% include "aldryn_people/includes/person.html" with person=person %} {% endfor %} {% endfor %} {% if ungrouped_people %}

{% trans "Ungrouped" %}

{% for person in ungrouped_people %} {% include "aldryn_people/includes/person.html" with person=person %} {% endfor %} {% endif %} {% static_placeholder "people_groups_bottom" %}
{% endblock content %}