X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=todo_templates%2Fday.html;h=6231aea24b5b75f2e4a22d8af44d37373b4f9509;hb=8822ee7e3069193162469438bb54ee4629e1ae19;hp=a6ad249f55baedbebfd50241b1528db1deb553ed;hpb=40021a447d9a6444205c82b2bdcd924e0586a07f;p=misc diff --git a/todo_templates/day.html b/todo_templates/day.html index a6ad249..6231aea 100644 --- a/todo_templates/day.html +++ b/todo_templates/day.html @@ -1,11 +1,12 @@ {% extends 'base.html' %} {% block css %} table.alternating tr:nth-child(even) { - background-color: #f2f2f2; + 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 } @@ -21,50 +22,69 @@ input[type="number"] { text-align: right; }

-

edit day

+

-prev | {{db.selected_date}} | next | -{{ db.selected_day.todos_sum|round(2) }} ({{ db.selected_day.todos_sum2|round(2)}}) | +| prev | {{db.selected_date}} | next | comment:

+
+done: {{ db.selected_day.todos_sum|round(2) }} ({{ db.selected_day.todos_sum2|round(2)}}) - -{% 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) %} +{% for todo in done_tasks %} - - -{% if uuid in db.selected_day.todos.keys() %} - - - - - - + + + + +{% 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 }}{{todo.task.current_title|e}}{{todo.effort}}{{todo.comment}}
+
+ + + + + + + + + +{% for row in task_rows %} + + + +{% if row.todo %} + + + + + + + {% else %} - - + + + + {% endif %} -{% endif %} {% endfor %}
tasktododoneeffortimportanceedit?day tagscomment
] {{ 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' %}