X-Git-Url: https://plomlompom.com/repos/?p=misc;a=blobdiff_plain;f=todo_templates%2Fpick_tasks.html;fp=todo_templates%2Fpick_tasks.html;h=ea1b324c3c76af56642842a5b3adaa6b819a3d2b;hp=0000000000000000000000000000000000000000;hb=76210b693b77e67bf8160a7fb869ae416309d333;hpb=28bd91c52ce1eab2b26793097e0d9cabc3c33c64 diff --git a/todo_templates/pick_tasks.html b/todo_templates/pick_tasks.html new file mode 100644 index 0000000..ea1b324 --- /dev/null +++ b/todo_templates/pick_tasks.html @@ -0,0 +1,96 @@ +{% 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 %} +
doeffortwhatcomment
+ + +{% 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 %} +