29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
{# Copyright The IETF Trust 2011, All Rights Reserved #}
|
|
{% load ietf_filters %}
|
|
{{ obj.info.text|safe }}<br/>
|
|
<br/>
|
|
{% with obj.group as wg %}
|
|
WG name: {{ wg.name }}<br/>
|
|
WG acronym: {{ wg.acronym }}<br/>
|
|
IETF area: {{ wg.parent|default:"-" }}<br/>
|
|
|
|
WG chairs: {% for n in obj.chairs %}{{ n }}{% if not forloop.last %}, {% endif %}{% endfor %}<br/>
|
|
WG secretaries: {% for n in obj.secr %}{{ n }}{% if not forloop.last %}, {% endif %}{% endfor %}<br/>
|
|
WG technical advisors: {% for n in obj.techadv %}{{ n }}{% if not forloop.last %}, {% endif %}{% endfor %}<br/>
|
|
Assigned AD: {{ wg.ad }}<br/>
|
|
|
|
Mailing list: {{ wg.list_email }}<br/>
|
|
Mailing list subscribe {{ wg.list_subscribe }}<br/>
|
|
Mailing list archive: {{ wg.list_archive }}<br/>
|
|
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/>
|
|
|
|
WG State: {{ wg.state|safe }}<br/>
|
|
Charter State: {{ wg.charter.charter_state|safe }}<br/>
|
|
<br/>
|
|
{% if obj.rev %}
|
|
{{ obj.charter|safe }}
|
|
{% else %}
|
|
The WG does not yet have a charter
|
|
{% endif %}
|
|
{% endwith %}
|