{% 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 %}
| {{grouptype.grouper}} | Name | Lead |
|---|---|---|
| {{ group.acronym }} | {{ group.name }} | {% for lead in group.leads %} {{ lead.person.plain_name }}{% if not forloop.last %}, {% endif %} {% endfor %} |