fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Build and deployment
[redakcja.git]
/
apps
/
catalogue
/
templates
/
catalogue
/
activity.html
1
{% extends "catalogue/base.html" %}
2
{% load i18n %}
3
{% load wall %}
4
5
6
{% block content %}
7
8
<h1><a href='{% url "catalogue_activity" prev_day.isoformat %}'><</a>
9
{% trans "Activity" %}: {{ day }}
10
{% if next_day %}
11
<a href='{% url "catalogue_activity" next_day.isoformat %}'>></a>
12
{% endif %}
13
</h1>
14
15
{% day_wall day %}
16
{% endblock content %}