19 lines
928 B
HTML
19 lines
928 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin static %}
|
|
{% block title %}{{ group_type | upper }} {{ role }} photos{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
{% load ietf_filters %}
|
|
<h1>{{ group_type | upper }} {{ role }} photos</h1>
|
|
{% regroup roles by last_initial as alphabet_blocks %}
|
|
{% for letter in alphabet_blocks %}
|
|
<h2 class="mt-4" id="{{ letter.grouper }}">{{ letter.grouper }}</h2>
|
|
{% regroup letter.list by person as person_groups %}
|
|
<div class="mt-0 row row-cols-1 row-cols-sm-2 row-cols-md-2 row-cols-lg-2 row-cols-xl-3 row-cols-xxl-3 g-3">
|
|
{% for person_with_groups in person_groups %}
|
|
<div class="col">{% include "person/photo.html" with person=person_with_groups.grouper groups=person_with_groups.list%}</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %} |