{% extends 'base.html' %} {% block css %} table.alternating tr:nth-child(even) { background-color: #f2f2f2; } table.alternating tr:nth-child(odd) { background-color: #ffffff; } 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 | {{ db.selected_day.todos_sum|round(2) }} ({{ db.selected_day.todos_sum2|round(2)}}) | comment:

{% for uuid, t in db.tasks.items() | sort(attribute='1.title') %} {% if t.visible and (uuid not in db.selected_day.todos.keys() or db.selected_day.todos[uuid].visible) %} {% if uuid in db.selected_day.todos.keys() %} {% else %} {% endif %} {% endif %} {% endfor %}
taskchoose?done?weightedit?day tagscomment
] {{ t.current_title|e }}tags: {% for tag in t.tags | sort %}{{ tag }} {% endfor %}
edit {% for tag in db.selected_day.todos[uuid].day_tags | sort %}{{ tag }} {% endfor %} {{ db.selected_day.todos[uuid].comment|e }}
{% include 'watch_form.html' %} {% endblock %}