{% extends 'base.html' %} {% block css %} td.number { text-align: right; } table.alternating tr:nth-child(even) { background-color: #cccccc; } table.alternating tr:nth-child(odd) { background-color: #ffffff; } th { text-align: left; background-color: white; border: 1px solid black; } th.desc { background: linear-gradient(to bottom, white, grey); } {% endblock %} {% block content %}
{% include 'tagfilters.html' %}
hide chosen tasks
search:

pick todos for day

prev | {{day.date}} | next | {{day.comment}}

{% for todo in chosen_todos %} {% endfor %} {% for todo in relevant_todos %} {% endfor %} {% for task in tasks %} {% endfor %}
do effort what comment
{% if todo.day_effort %}{{todo.day_effort}} {% else %}({{todo.default_effort}}){% endif %}{% if todo.done and not "cancelled" in todo.contemporary_tags%}✓{% else %} {% endif %} {% if "cancelled" in todo.contemporary_tags %}{% endif %}{% if "deadline" in todo.contemporary_tags %}DEADLINE: {% endif %}{{todo.path|e}}{{todo.title|e}}{%if "cancelled" in todo.contemporary_tags%}{% endif %} {{todo.comment|e}}
earlier todos to continue
{{todo.all_days_effort}}/{{todo.default_effort}} {{todo.day.date}} {{todo.task.title.then|e}} {{todo.comment|e}}
tasks
({{task.default_effort.then}})  {{ task.title.then|e }} {{task.comment|e}}
{% include 'watch_form.html' %} {% endblock %}