summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/threads/month_list.html
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-12-10 12:25:38 +0100
committerAurélien Bompard <aurelien@bompard.org>2012-12-10 12:25:38 +0100
commit0a8e5ee78fb231606a0b43f6688aca47e941d91c (patch)
tree6ca9f83c9706430d72224c928feeb41d5ef55d23 /hyperkitty/templates/threads/month_list.html
parentc29c544ad61059f2360845b48f4f44b76687d153 (diff)
downloadhyperkitty-0a8e5ee78fb231606a0b43f6688aca47e941d91c.tar.gz
hyperkitty-0a8e5ee78fb231606a0b43f6688aca47e941d91c.tar.xz
hyperkitty-0a8e5ee78fb231606a0b43f6688aca47e941d91c.zip
Non-code changes (license texts, indentation, etc.)
Diffstat (limited to 'hyperkitty/templates/threads/month_list.html')
-rw-r--r--hyperkitty/templates/threads/month_list.html18
1 files changed, 10 insertions, 8 deletions
diff --git a/hyperkitty/templates/threads/month_list.html b/hyperkitty/templates/threads/month_list.html
index 85af7b6..4781ec4 100644
--- a/hyperkitty/templates/threads/month_list.html
+++ b/hyperkitty/templates/threads/month_list.html
@@ -3,13 +3,15 @@
<div id="archives">
{% for year, months in archives_length|sort %}
<h3>{{ year }}</h3>
- <ul>
- {% for ar_month in months %}
- <li class="{% if year == month.year and ar_month == month.month %}current{% endif %}">
- <a href="{% url archives_with_month year=year, mlist_fqdn=list_address, month=ar_month %}"
- >{{ ar_month|monthtodate:year|date:"F" }}</a>
- </li>
- {% endfor %}
- </ul>
+ <ul>
+ {% for ar_month in months %}
+ <li class="{% if year == month.year and ar_month == month.month %}current{% endif %}">
+ <a href="{% url archives_with_month year=year, mlist_fqdn=list_address, month=ar_month %}"
+ >{{ ar_month|monthtodate:year|date:"F" }}</a>
+ </li>
+ {% endfor %}
+ </ul>
{% endfor %}
</div>
+
+{# vim: set noet: #}