blob: 409e4f11df422bf43b78b39da0399cfcf2f87e39 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{% extends "base.html" %}
{% load i18n %}
{% block title %}
{% trans 'Available lists' %} - {{ app_name|title }}
{% endblock %}
{% block content %}
<div class="all-lists">
<h1 class="lists">{% trans 'Available lists' %}</h1>
<div class="row-fluid">
{% for mlist in lists %}
<div class="span3">
<a href="{% url list_overview mlist_fqdn=mlist.name %}">
<p class="list-name">
{% if mlist.display_name %}
{{ mlist.display_name }}
{% else %}
{{ mlist.name }}
</p>
{% endif %}
<p class="list-address">{{ mlist.name }}</p>
{% if mlist.description %}
<p>{{ mlist.description }}</p>
{% endif %}
</a>
</div>
{% if forloop.counter|divisibleby:"4" %}
</div>
<div class="row-fluid">
{% endif %}
{% empty %}
<p>No archived list yet.</p>
{% endfor %}
</div>
</div>
<img id="logo" alt="HyperKitty" src="{{STATIC_URL}}img/logo.png" />
{% endblock %}
{# vim: set noet: #}
|