{% extends "base.html" %} {# Copyright The IETF Trust 2021, All Rights Reserved #} {% load origin static %} {% block pagehead %} {% endblock %} {% block title %}Active IAB groups{% endblock %} {% block content %} {% origin %} {% regroup iabgroups by type as grouped_groups %} {% for grouptype in grouped_groups %}

Active {% firstof grouptype.grouper.verbose_name grouptype.grouper.name %}{{grouptype.list|pluralize}}

{% for group in grouptype.list %} {% endfor %}
{{grouptype.grouper}} Name Lead
{{ group.acronym }} {{ group.name }} {% for lead in group.leads %} {{ lead.person.plain_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endfor %} {% endblock %} {% block js %} {% endblock %}