summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/templates/index.html')
-rw-r--r--hyperkitty/templates/index.html34
1 files changed, 16 insertions, 18 deletions
diff --git a/hyperkitty/templates/index.html b/hyperkitty/templates/index.html
index 85d051e..181edb2 100644
--- a/hyperkitty/templates/index.html
+++ b/hyperkitty/templates/index.html
@@ -16,18 +16,18 @@
<div class="row-fluid">
{% for mlist in all_lists %}
<div class="span3">
- <a href="{% url 'list_overview' mlist_fqdn=mlist.name %}" class="mailinglist">
- <p class="list-name">
- {% if mlist.display_name %}
- {{ mlist.display_name }}
- {% else %}
- {{ mlist.name }}
- {% endif %}
- </p>
- <p class="list-address">{{ mlist.name }}</p>
- <p class="list-description"></p>
- <img alt="Loading..." class="ajaxloader" src="{{ STATIC_URL }}img/ajax-loader.gif" />
- </a>
+ <a href="{% url 'list_overview' mlist_fqdn=mlist.name %}" class="mailinglist">
+ <p class="list-name">
+ {% if mlist.display_name %}
+ {{ mlist.display_name }}
+ {% else %}
+ {{ mlist.name }}
+ {% endif %}
+ </p>
+ <p class="list-address">{{ mlist.name }}</p>
+ <p class="list-description"></p>
+ <img alt="Loading..." class="ajaxloader" src="{{ STATIC_URL }}img/ajax-loader.gif" />
+ </a>
</div>
{% if forloop.counter|divisibleby:"4" %}
</div>
@@ -47,12 +47,10 @@
{% block additionaljs %}
<script type="text/javascript">
- $(document).ready(function() {
- // Load the properties
- update_list_properties("{% url 'list_properties' %}");
- });
+ $(document).ready(function() {
+ // Load the properties
+ update_list_properties("{% url 'list_properties' %}");
+ });
</script>
{% endblock %}
-
-{# vim: set noet: #}