X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=todo_templates%2Ftodo.html;h=beccb75e2d051d5446b9adce9018ef7b3d5f3dce;hb=76210b693b77e67bf8160a7fb869ae416309d333;hp=4bf83e3cc783d7c70e738972206f65b77372704d;hpb=942c977e0052d09300625e7a5c1b5fc2eede9098;p=misc diff --git a/todo_templates/todo.html b/todo_templates/todo.html index 4bf83e3..beccb75 100644 --- a/todo_templates/todo.html +++ b/todo_templates/todo.html @@ -1,34 +1,83 @@ {% 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 }}
task{{ todo.task.title.then|e }}
default effort{{ todo.default_effort }}
day{{ todo.day.date }}
day effort
efforts + + +{% for date, effort in todo.efforts.items() %} + + + + + +{% endfor %} + + + + +
dateeffortdelete
{% if not (todo.children and effort) %}{% endif %}
+
total effort{{todo.all_days_effort}}
importance
comment
done
comment
done +{% if todo.children %}✓{% else %}{% endif %} +
day tags {% for tag in db.t_tags | sort %} -{% if tag in todo.task.tags %} âœ“{% else %}{% endif %} {{ tag }}
+{% if tag in todo.task.tags.now %} âœ“{% else %}{% endif %} {{ tag }}
{% endfor %} -add: +add:
parent{% if todo.parent %}{{todo.parent.title}}{% else %}–{% endif %}
children + +{% for todo in child_todos %} + + + + + +{% endfor %} + +
{% if todo.done %}✓{% endif %}{{todo.all_days_effort}}{{todo.title}}
+
+
+ +
{% endblock %}