{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin static %} {% block pagehead %} {% endblock %} {% block title %}Active directorates{% endblock %} {% block content %} {% origin %}
| Team | Name | Reviews | Area | AD | Secretaries | Chairs |
|---|---|---|---|---|---|---|
| {{ group.acronym }} | {{ group.name }} | {% if group.type_id == 'review' %} yes {% endif %} | {{ group.parent.acronym }} | {% for ad in group.ads %} {{ ad.person.plain_name }} {% if not forloop.last %}, {% endif %} {% endfor %} | {% for secretary in group.secretaries %} {{ secretary.person.plain_name }} {% if not forloop.last %}, {% endif %} {% endfor %} | {% for chair in group.chairs %} {{ chair.person.plain_name }} {% if not forloop.last %}, {% endif %} {% endfor %} |