|
44 | 44 | {% block content %} |
45 | 45 | <h1>Active IETF Working Groups</h1> |
46 | 46 |
|
47 | | -<p>See also: <a href="http://www.ietf.org/wg/concluded/">Concluded |
48 | | -Working Groups (www.ietf.org)</a>, <a href="http://tools.ietf.org/wg/concluded/">Concluded Working Groups (tools.ietf.org)</a>, <a href="http://www.ietf.org/dyn/wg/charter/history/">Historic Charters</a>.</p> |
| 47 | + <p>See also: |
| 48 | + <a href="http://www.ietf.org/wg/concluded/">Concluded Working Groups (www.ietf.org)</a>, |
| 49 | + <a href="http://tools.ietf.org/wg/concluded/">Concluded Working Groups (tools.ietf.org)</a>, |
| 50 | + <a href="http://www.ietf.org/dyn/wg/charter/history/">Historic Charters</a>. |
| 51 | + </p> |
49 | 52 |
|
50 | | -{% for area in areas|dictsort:"area_acronym.name" %} |
51 | | -<h2 class="ietf-divider" id="{{area.area_acronym.name|cut:" "}}">{{ area.area_acronym.name }}</h2> |
| 53 | + {% for area in areas|dictsort:"area_acronym.name" %} |
| 54 | + <h2 class="ietf-divider" id="{{area.area_acronym.name|cut:" "}}">{{ area.area_acronym.name }}</h2> |
52 | 55 |
|
53 | | -{% for ad in area.areadirector_set.all|dictsort:"person.last_name" %} |
54 | | -{% if forloop.first %} |
55 | | -<p>Area Director{{ forloop.revcounter|pluralize }}:</p> |
56 | | -<p style="margin-left: 2em"> |
57 | | -{% endif %} |
58 | | -<a href="mailto:{{ ad.person.email.1 }}">{{ ad.person }} <{{ ad.person.email.1 }}></a>{% if not forloop.last %}<br/>{% endif %} |
59 | | -{% if forloop.last %} |
60 | | -</p> |
61 | | -{% endif %} |
62 | | -{% endfor %} |
| 56 | + {% for ad in area.areadirector_set.all|dictsort:"person.last_name" %} |
| 57 | + {% if forloop.first %} |
| 58 | + <p>Area Director{{ forloop.revcounter|pluralize }}:</p> |
| 59 | + <p style="margin-left: 2em"> |
| 60 | + {% endif %} |
| 61 | + <span class="square bgcolor{{forloop.counter}}"> </span> <a href="mailto:{{ ad.person.email.1 }}">{{ ad.person }} <{{ ad.person.email.1 }}></a>{% if not forloop.last %}<br/>{% endif %} |
| 62 | + {% if forloop.last %} |
| 63 | + </p> |
| 64 | + {% endif %} |
| 65 | + {% endfor %} |
63 | 66 |
|
64 | | -{% for url in area.additional_urls %} |
65 | | -{% if forloop.first %} |
66 | | -<p>Area Specific Web Page{{ forloop.revcounter|pluralize}}:</p> |
67 | | -<p style="margin-left: 2em"> |
68 | | -{% endif %} |
69 | | -<a href="{{url.url}}">{{ url.description }}</a>{% if not forloop.last %}<br/>{% endif %} |
70 | | -{% if forloop.last %} |
71 | | -</p> |
72 | | -{% endif %} |
73 | | -{% endfor %} |
| 67 | + {% for url in area.additional_urls %} |
| 68 | + {% if forloop.first %} |
| 69 | + <p>Area Specific Web Page{{ forloop.revcounter|pluralize}}:</p> |
| 70 | + <p style="margin-left: 2em"> |
| 71 | + {% endif %} |
| 72 | + <a href="{{url.url}}">{{ url.description }}</a>{% if not forloop.last %}<br/>{% endif %} |
| 73 | + {% if forloop.last %} |
| 74 | + </p> |
| 75 | + {% endif %} |
| 76 | + {% endfor %} |
74 | 77 |
|
75 | | -{% for wg in area.active_wgs %} |
76 | | -{% if forloop.first %} |
77 | | -<p>Active Working Groups:</p> |
78 | | -<div style="margin-left:2em;"> |
79 | | -<table class="ietf-wg-table"> |
80 | | -{% endif %} |
81 | | -<tr><td width="10%;"><a href="/wg/{{wg}}/">{{ wg }}</a></td><td width="50%">{{ wg.group_acronym.name }}</td> |
82 | | -<td width="39%">{% for chair in wg.chairs %}<a href="mailto:{{chair.person.email.1}}">{{chair.person}}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</td></tr> |
83 | | -{% if forloop.last %} |
84 | | -</table> |
85 | | -</div> |
86 | | -{% endif %} |
87 | | -{% empty %} |
88 | | -<p>No Active Working Groups</p> |
89 | | -{% endfor %}{# wg #} |
| 78 | + {% for wg in area.active_wgs %} |
| 79 | + {% if forloop.first %} |
| 80 | + <p>Active Working Groups:</p> |
| 81 | + <div style="margin-left:2em;"> |
| 82 | + <table class="ietf-wg-table"> |
| 83 | + {% endif %} |
| 84 | + <tr> |
| 85 | + <td width="10%;"><a href="/wg/{{wg}}/">{{ wg }}</a></td> |
| 86 | + <td width="1%">{% for ad in area.areadirector_set.all|dictsort:"person.last_name" %}{% ifequal ad wg.area_director %}<span class="square bgcolor{{forloop.counter}}"> </span>{% endifequal %}{% endfor %}</td> |
| 87 | + <td width="50%">{{ wg.group_acronym.name }}</td> |
| 88 | + <td width="39%">{% for chair in wg.chairs %}<a href="mailto:{{chair.person.email.1}}">{{chair.person}}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</td> |
| 89 | + </tr> |
| 90 | + {% if forloop.last %} |
| 91 | + </table> |
| 92 | + </div> |
| 93 | + {% endif %} |
| 94 | + {% empty %} |
| 95 | + <p>No Active Working Groups</p> |
| 96 | + {% endfor %}{# wg #} |
90 | 97 |
|
91 | | -{% endfor %}{# area #} |
| 98 | + {% endfor %}{# area #} |
92 | 99 | {% endblock %} |
0 commit comments