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