30 lines
758 B
HTML
30 lines
758 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load cache %}
|
|
{% block title %}Non-Working Group email lists{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Non-Working Group email lists</h1>
|
|
|
|
{% cache 900 nonwglisttable %}
|
|
<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>
|
|
{% endcache %}
|
|
{% endblock %}
|