summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/index.html
blob: 433cf2746849f3641a46d5e380a1a47a1d1e823a (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
{% 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>

<img id="logo" alt="HyperKitty" src="{{STATIC_URL}}img/logo.png" />

{% endblock %}

{# vim: set noet: #}