home · contact · privacy
Re-organize testing.
[plomtask] / templates / calendar_txt.html
1 {% extends '_base.html' %}
2
3 {% block content %}
4 <h3>calendar</h3>
5
6 <p><a href="/calendar">normal view</a></p>
7
8 <form action="calendar_txt" method="GET">
9 from <input name="start" class="date" value="{{start}}" />
10 to <input name="end" class="date" value="{{end}}" />
11 <input type="submit" value="OK" />
12 </form>
13 <table>
14
15 <pre>{% for day in days %}{% if day.weekday == "Monday" %}
16 ---{% endif %}{% if day.comment or day.calendarized_todos %}
17 {{day.weekday|truncate(2,True,'',0)}} {{day.date}} {{day.comment|e}}{% endif %}{% if day.calendarized_todos%}{% for todo in day.calendarized_todos %}
18 * {{todo.title_then|e}}{% if todo.comment %} / {{todo.comment|e}}{% endif %}{% endfor %}{% endif %}{% endfor %}
19 </pre>
20 {% endblock %}