summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/gbobject_archive_year.html
blob: eeca0426f9c4a1bec958db7fb7077186292b4d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "objectapp/gbobject_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 objectapp_gbobject_archive_month year date|date:"m" %}" rel="archives">{{ date|date:"YEAR_MONTH_FORMAT" }}</a>
  </li>
  {% endfor %}
</ul>
{% endblock %}