You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{# Copyright The IETF Trust 2011, All Rights Reserved #}
2
+
{% load ietf_filters %}
3
+
{{ obj.info.text|safe }}<br/>
4
+
<br/>
5
+
{% with obj.group as wg %}
6
+
WG name: {{ wg.name }}<br/>
7
+
WG acronym: {{ wg.acronym }}<br/>
8
+
IETF area: {{ wg.parent|default:"-" }}<br/>
9
+
10
+
WG chairs: {% for n in obj.chairs %}{{ n }}{% if not forloop.last %}, {% endif %}{% endfor %}<br/>
11
+
WG secretaries: {% for n in obj.secr %}{{ n }}{% if not forloop.last %}, {% endif %}{% endfor %}<br/>
12
+
WG technical advisors: {% for n in obj.techadv %}{{ n }}{% if not forloop.last %}, {% endif %}{% endfor %}<br/>
13
+
Assigned AD: {{ wg.ad }}<br/>
14
+
15
+
Mailing list: {{ wg.list_email }}<br/>
16
+
Mailing list subscribe {{ wg.list_subscribe }}<br/>
17
+
Mailing list archive: {{ wg.list_archive }}<br/>
18
+
Other web sites: {% for a in wg.groupurl_set.all %}{{ a.url }} {% if a.name %}({{ a.name }}){% endif %}{% if not forloop.last %}, {% endif %}{% endfor %}<br/>
19
+
20
+
WG State: {{ wg.state|safe }}<br/>
21
+
Charter State: {{ wg.charter.charter_state|safe }}<br/>
0 commit comments