1 {% import 'macros.html' as macros %}
5 {% for date, day in days.items() %}
6 {% if day.month_title %}
7 <tr><td colspan=3>### {{ day.month_title }} ###</td></tr>
9 {% if day.visible_in_export %}
10 <tr><td colspan=3># {{ date }} ({{ day.weekday }}) {{ day.comment|e }}</td></tr>
11 {% for todo in day.linked_todos_as_list %}
15 {% if "cancelled" in todo.tags %}<s>{% endif %}
16 {{ macros.doneness_string(todo, true) }}
17 {% if "deadline" in todo.tags %}DEADLINE: {% endif %}
19 {%if "cancelled" in todo.tags%}</s>{% endif %}