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

{% endblock %}