X-Git-Url: https://plomlompom.com/repos/?p=misc;a=blobdiff_plain;f=todo_templates%2Ftodo.html;fp=todo_templates%2Ftodo.html;h=b3926da475ac7469608503d831fbfb61dd32a741;hp=0000000000000000000000000000000000000000;hb=53b84307929582af2aaeac2247cc57db4a7bedf4;hpb=bd32647c67dd9a4979a39efaf31bfe63c82c72d0 diff --git a/todo_templates/todo.html b/todo_templates/todo.html new file mode 100644 index 0000000..b3926da --- /dev/null +++ b/todo_templates/todo.html @@ -0,0 +1,33 @@ +{% extends 'base.html' %} +{% block css %} +th, td { vertical-align: top; text-align: left} +td.input { width: 100%; } +td.checkbox { width: 0.1em; height: 0.1em; padding: 0em; text-align: center; } +input[type="number"] { text-align: right; } +input[type="text"] { width: 100% } +textarea { width: 100% }; +{% endblock %} +{% block content %} +
+

edit todo

+ + + + + + + + + + + + +
task{{ todo.task.title|e }}
default weight{{ todo.default_weight }}
day{{ todo.day.date }}
day weight
comment
done
day tags +{% for tag in db.t_tags | sort %} +{% if tag in todo.task.tags %} âœ“{% else %}{% endif %} {{ tag }}
+{% endfor %} +add: +
+ +
+{% endblock %}