blob: 62e3cf98c62b0ffd6304ba51e7731d2171668b6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends "gstudio/nodetype_list.html" %}
{% load i18n %}
{% block meta-description %}{% trans "Archives" %} {{ year }}{% endblock %}
{% block title %}{% trans "Archives" %} {{ year }}{% endblock %}
{% block content %}
<h1>{% trans "Archives" %} {{ year }}</h1>
{{ block.super }}
<h2>{% trans "Monthly archives" %}</h2>
<ul>
{% for date in date_list %}
<li>
<a href="{% url gstudio_nodetype_archive_month year date|date:"m" %}" rel="archives">{{ date|date:"YEAR_MONTH_FORMAT" }}</a>
</li>
{% endfor %}
</ul>
{% endblock %}
|