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;
41 <p><a href="/calendar_txt">basic view</a></p>
43 <form action="calendar" method="GET">
44 from <input name="start" class="date" value="{{start}}" />
45 to <input name="end" class="date" value="{{end}}" />
46 <input type="submit" value="OK" />
51 {% if day.first_of_month %}
52 <tr class="month_row">
53 <td colspan=2>{{ day.month_name }}</td>
57 {% if day.weekday == "Monday" %}
64 <td class="day_name {% if day.date == today %}today{% endif %}">
65 <a href="day?date={{day.date}}">{{day.weekday|truncate(2,True,'',0)}} {% if day.date == today %} {% endif %}{{day.date}}</a>
66 [<span class="total_effort">{{ '{:5.1f}'.format(day.total_effort) }}</span>]
67 {{day.comment|e}}</td>
70 {% for todo in day.calendarized_todos %}
72 <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>