{% extends 'base.html' %} {% block css %} tr td { background-color: white; } tr.week_row td { height: 0.1em; background-color: black; } tr.day_row td { background-color: #cccccc } td.checkbox { width: 0.1em; height: 0.1em; padding: 0em; text-align: center; } {% endblock %} {% block content %}

from: to:

{% for date, day in days.items() | sort() %} {% if day.weekday == 'Mo' %}{% endif %} {% for todo in day.linked_todos_as_list %} {% if todo.visible %} {% endif %} {% endfor %} {% endfor %}
{{ day.weekday }} {{ date }} |{{ '%04.1f' % day.todos_sum|round(2) }}| {{ day.comment|e }}
{% if todo.done and not "cancelled" in todo.tags%}✓{% else %}  {% endif %}{% if "cancelled" in todo.tags %}{% endif %}{% if "deadline" in todo.tags %}DEADLINE: {% endif %}{{ todo.title|e }}{%if "cancelled" in todo.tags%}{% endif %}{{ todo.comment|e }}
{% endblock %}