{% autopaginate current_page.get_child_pages 24 as object_list %}
{% for page in object_list %}
{% if page.person %}
{% include "courses/cms/fragment_person_glimpse.html" with person=page.person %}
{% endif %}
{% empty %}
{% trans "No persons" %}
{% endfor %}
{% if object_list %}
{% paginate using "richie/pagination.html" %}
{% endif %}