Librarian in regular requirements.
[redakcja.git] / apps / catalogue / templates / catalogue / activity.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3 {% load wall %}
4
5
6 {% block titleextra %}{% trans "Activity" %}{% endblock %}
7
8
9 {% block content %}
10
11 <h1><a href='{% url "catalogue_activity" prev_day.isoformat %}'>&lt;</a>
12     {% trans "Activity" %}: {{ day }}
13     {% if next_day %}
14         <a href='{% url "catalogue_activity" next_day.isoformat %}'>&gt;</a>
15     {% endif %}
16 </h1>
17
18     {% day_wall day %}
19 {% endblock content %}