datatracker/ietf/templates/mailinglists/nonwg.html
Henrik Levkowetz 0c1105f4bb Added a page that lists all the advertised non-wg mailing lists, based
on data fetched from mailman by a cronjob running the
import_mailman_listinfo managemnt command.  Fixes issue #2438.
 - Legacy-Id: 14587
2018-01-30 15:49:08 +00:00

28 lines
692 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Non-Working Group email lists{% endblock %}
{% block content %}
{% origin %}
<h1>Non-Working Group email lists</h1>
<table class="table table-condensed table-striped">
<thead>
<tr>
<th>Name</th><th>Description</th><th>List Info</th>
</tr>
</thead>
<tbody>
{% for list in lists %}
<tr>
<td>{{ list.name.lower }}</td>
<td>{{ list.description }}</td>
<td><a href="{{ list.info_url }}">{{ list.info_url.lower }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}