blob: 43184958547a3153e1154b1234ef20aff4dc8c01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<h1>{% trans 'Lists' %}</h1>
<table class="table table-bordered table-striped">
<tbody>
{% for mlist in lists %}
<tr>
<td>{{ mlist }}</td>
<td><a href="{% url list_overview mlist_fqdn=mlist %}"> Overview </a></td>
<td><a href="{% url archives mlist_fqdn=mlist %}"> Archives </a></td>
</tr>
{% empty %}
<tr><td>No archived list yet.</td></tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
{# vim: set noet: #}
|