X-Git-Url: https://plomlompom.com/repos/?p=misc;a=blobdiff_plain;f=todo_templates%2Fdo_todos.html;fp=todo_templates%2Fdo_todos.html;h=7a8ae82158217427993f414e4f9ee13b7aa70b1c;hp=0000000000000000000000000000000000000000;hb=76210b693b77e67bf8160a7fb869ae416309d333;hpb=28bd91c52ce1eab2b26793097e0d9cabc3c33c64 diff --git a/todo_templates/do_todos.html b/todo_templates/do_todos.html new file mode 100644 index 0000000..7a8ae82 --- /dev/null +++ b/todo_templates/do_todos.html @@ -0,0 +1,85 @@ +{% extends 'base.html' %} +{% block css %} +table.alternating tr:nth-child(even) { + background-color: #cccccc; +} +table.alternating tr:nth-child(odd) { + background-color: #ffffff; +} +th, td { text-align: left} +th.desc { background: linear-gradient(to bottom, white, grey); } +th.center { text-align: center; } +td.checkbox, td.number { height: 0.1em; padding: 0em; text-align: center; } +td.checkbox { width: 0.1em; text-align: center; } +td button { height: 1.5em; padding: 0em; margin: 0em } +input[type="number"] { text-align: right; } +th.desc { background: linear-gradient(to bottom, white, grey); } +{% endblock %} +{% block content %} +
+{% include 'tagfilters.html' %} +
+ hide done + +
+

do day

+
+

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

+ + + + + + + +{% for todo in todos %} + + + + + + + + +{% endfor %} +
doneeffortimportancetodocomment
+{% if todo.children %} +{% if todo.done %}✓{% else %}  {% endif %} +{% else %} + +{% endif %} + +{% if todo.children %} + +{% else %} + +{% endif %} +{{todo.path}}{{todo.title}}
+ +
+{% include 'watch_form.html' %} + +{% endblock %}