blob: c1aa60907dd8188b1851f2065f1829a4b7c134c5 (
plain)
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
30
31
|
{% extends "base.html" %}
{% load i18n %}
{% block title %}
{% trans 'Available lists' %} - {{ app_name|title }}
{% endblock %}
{% block content %}
<h1>{% trans 'Available 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>
<img id="logo" alt="HyperKitty" src="{{STATIC_URL}}img/logo.png" />
{% endblock %}
{# vim: set noet: #}
|