{% extends 'base.html' %} {% block css %} #filter { margin-bottom: 1em; } tr.month_row td { color: white; background-color: #555555; text-align: center; } tr.week_row td { height: 0.1em; background-color: black; } tr.day_row td { background-color: #cccccc; } span.selected_date { font-weight: bold; } span.todos_sum { white-space: pre; } {% endblock %} {% block content %}

calendar

from: to:
{% for date, day in days.items() %} {% if day.month_title %} {% endif %} {% if day.weekday == 'Mo' %} {% endif %} {% for todo in day.linked_todos_as_list %} {% if todo.visible %} {% endif %} {% endfor %} {% endfor %}
{{ day.month_title }}
{{ day.weekday }} {{ date }} |{{ '{:5.1f}'.format(day.todos_sum)}}| {{ day.comment|e }}
{% if "cancelled" in todo.tags %}{% endif %} {{ macros.doneness_string(todo, true) }} {% if "deadline" in todo.tags %}DEADLINE: {% endif %} {{ todo.title|e }} {%if "cancelled" in todo.tags%}{% endif %} {{ todo.comment|e }}

exportable

{% endblock %}