home
·
contact
·
privacy
projects
/
plomtask
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
832e03867614ef0aa08d7694dbfd4b325b8ac298
[plomtask]
/
templates
/
calendar.html
1
{% extends 'base.html' %}
2
3
{% block content %}
4
<ul>
5
{% for day in days %}
6
<li><a href="day?date={{day.date}}">{{day.date}}</a> ({{day.weekday}})
7
{% endfor %}
8
</ul>
9
{% endblock %}