forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnonwg.html
More file actions
29 lines (27 loc) · 758 Bytes
/
nonwg.html
File metadata and controls
29 lines (27 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% 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 %}