From 85c24b8450534e1a06f9d1feca7bbf5ac22d2208 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Thu, 12 Jul 2018 12:16:13 +0000 Subject: [PATCH] Added a missing template. - Legacy-Id: 15317 --- ietf/templates/group/active_review_dirs.html | 58 ++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 ietf/templates/group/active_review_dirs.html 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 %}