datatracker/ietf/templates/mailinglists/wgwebmail_list.html
2010-07-21 12:48:05 +00:00

32 lines
1.1 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2008, All Rights Reserved #}
{% block title %}Web-based Working Group E-mail Archives{% endblock %}
{% block content %}
<h1>Web-based Working Group E-mail Archives</h1>
<p>These links to the Web-based working group e-mail archives are
extracted from the working group charters. Please consult the
charters for more information about the mailing lists and archives
of specific working groups. Charters for active working groups are
available on
the <a href="/wg/">Active
IETF Working Groups</a> Web page. Charters for concluded working
groups are available on
the <a href="http://www.ietf.org/wg/concluded/index.html">Concluded
Working Groups</a> Web page.</p>
<table cellpadding="2" cellspacing="0" border="0">
<tr>
<th style="text-align:left;padding-right:2em;">Acronym</th><th style="text-align:left;">Name</th>
</tr>
{% for wg in object_list|dictsort:"group_acronym.acronym" %}
<tr>
<td><a href="{{ wg.email_archive|escape }}">{{ wg|escape }}</a></td>
<td>{{ wg.group_acronym.name|escape }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}