home · contact · privacy
7e6ea58c223fb1dd0ad99ce21ff5cd0796cd17a5
[misc] / new_todo / html / calendar.html
1 {% extends 'base.html' %}
2
3 {% block content %}
4 <form action="/calendar" method="GET">
5 range: <input name="from" value="{{from_|e}}" />
6 to <input name="to" value="{{to|e}}" />
7 <input type="submit" value="OK" />
8 </form>
9 <ul>
10 {% for day in days %}
11 <li><a href="day?id={{day.date|e}}">{{day.weekday|e|truncate(length=2,leeway=0,killwords=true,end='')}} {{day.date|e}}</a> {{day.comment|e}}
12 {% endfor %}
13 </ul>
14 {% endblock %}