1 {% extends '_base.html' %}
8 background-color: black;
11 border-top: 0.2em solid white;
14 border-top: 0.2em solid white;
16 background-color: #555555;
22 background-color: #cccccc;
23 border-top: 0.2em solid white;
38 <p><a href="/calendar_txt">basic view</a></p>
40 <form action="calendar" method="GET">
41 from <input name="start" class="date" value="{{start}}" />
42 to <input name="end" class="date" value="{{end}}" />
43 <input type="submit" value="OK" />
48 {% if day.first_of_month %}
49 <tr class="month_row">
50 <td colspan=2>{{ day.month_name }}</td>
54 {% if day.weekday == "Monday" %}
61 <td class="day_name {% if day.date == today %}today{% endif %}"><a href="day?date={{day.date}}">{{day.weekday|truncate(2,True,'',0)}} {% if day.date == today %} {% endif %}{{day.date}}</a> {{day.comment|e}}</td>
64 {% for todo in day.calendarized_todos %}
66 <td>[{% if todo.is_done %}X{% else %} {% endif %}] <a href="todo?id={{todo.id_}}">{{todo.title_then|e}}</a>{% if todo.comment %} · {{todo.comment|e}}{% endif %}</td>