summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/index.html
blob: 637a85fc0b5198a3b6b0dceaaf70dcfb2d7dff33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% 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 %}