{% extends "klisha/base.html" %} {% block head.title %}Archive{% endblock %} {% block body.content %}

Archive

{% for year, months in archive.items reversed %}
{{ year }}:
{% for date in months %} {{ date|date:"n" }} {% endfor %}
{% endfor %}
{% endblock %}