diff --git a/ietf/templates/group/active_review_dirs.html b/ietf/templates/group/active_review_dirs.html new file mode 100644 index 000000000..b444e4728 --- /dev/null +++ b/ietf/templates/group/active_review_dirs.html @@ -0,0 +1,58 @@ +{% extends "base.html" %} +{# Copyright The IETF Trust 2015, All Rights Reserved #} +{% load origin staticfiles %} + +{% block pagehead %} + +{% endblock %} + +{% block title %}Active review directorates{% endblock %} + + +{% block content %} + {% origin %} +

Active Review Directorates

+ + + + + + + + + + + + + {% for group in dirs %} + + + + + + + + + {% endfor %} + +
TeamNameAreaADSecretariesChairs
{{ group.acronym }}{{ group.name }}{{ 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 %} +
+{% endblock %} + +{% block js %} + +{% endblock %}