{% extends 'base.html' %} {% block css %} table.alternating tr:nth-child(even) { background-color: #e2e2e2; } table.alternating tr:nth-child(odd) { background-color: #ffffff; } th.desc { background: linear-gradient(to bottom, white, grey); } td.checkbox, td.number { height: 0.1em; padding: 0em; text-align: center; } td.checkbox { width: 0.1em } td button { height: 1.5em; padding: 0em; margin: 0em } td details { display: inline } input[type="number"] { text-align: right; } {% endblock %} {% block content %}
{% include 'tagfilters.html' %}

hide unchosen hide done

edit day

| prev | {{db.selected_date}} | next | comment:

done: {{ db.selected_day.todos_sum|round(2) }} ({{ db.selected_day.todos_sum2|round(2)}}) {% for todo in done_tasks %} {% endfor %}
{{todo.task.current_title|e}} {{todo.effort}} {{todo.comment}}
{% for row in task_rows %} {% if row.todo %} {% else %} {% endif %} {% endfor %}
task todo done effort importance edit?day tags comment
] {{ row.task.current_title|e }}tags: {% for tag in row.task.tags | sort %}{{ tag }} {% endfor %}
edit {% for tag in row.todo.day_tags | sort %}{{ tag }} {% endfor %} {{ row.todo.comment|e }} edit
{% include 'watch_form.html' %} {% endblock %}