datatracker/ietf/templates/mailinglists/group_archives.html

51 lines
1.8 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}Web-based Working Group email archives{% endblock %}
{% block content %}
{% origin %}
<h1>Web-based Working Group email 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="{% url 'ietf.group.views.active_groups' group_type='wg' %}">Active IETF Working Groups</a>
Web page.
Charters for concluded working groups are available on
the
<a href="{% url 'ietf.group.views.concluded_groups' %}">
Concluded
Working Groups
</a>
Web page.
</p>
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th scope="col" data-sort="acronym">Acronym</th>
<th scope="col" data-sort="name">Name</th>
</tr>
</thead>
{% if groups %}
<tbody>
{% for group in groups %}
<tr>
<td>
<a href="{{ group.list_archive }}">{{ group.acronym }}</a>
</td>
<td>{{ group.name }}</td>
</tr>
{% endfor %}
</tbody>
{% endif %}
</table>
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}