aboutsummaryrefslogtreecommitdiff
path: root/weblog/templates/weblog/sidebar_archive.html
blob: 5953bfe03481bfa05962aeedc3c906822c1862cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% load i18n %}
<h3>{% trans 'Archive' context 'Blog archive' %}</h3>
<ul class='archive-list'>
{% for a_year in archive %}
<li><a class="node-toggle" node-target="{{ a_year.0 }}-list" node-state="closed" href="javascript:void(0)" onclick="toggleNode(this);">+</a> <a href="{% url 'weblog:ArchiveIndex' year=a_year.0 %}">{{ a_year.0 }}</a>
    <ul id="{{ a_year.0 }}-list" class='archive-child-list'>
        {% for a_month in a_year.1 %}
        <li><a href="{% url 'weblog:ArchiveIndex' year=a_year.0 month=a_month.0 %}">{{ a_month.1 }}</a></li>
        {% endfor %}
    </ul>
</li>
{% endfor %}
</ul>