X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/git-logo.png?a=blobdiff_plain;f=todo_templates%2Ftodo.html;h=88fa72b2e0ec6fc9afb0abd7b8f89b2ab7b45e70;hb=59056f396c4761f9cd7ffbc569e3ddf8994d5e83;hp=404ac1c496e32e3fdff533ccb634b2973029a1f6;hpb=979de59ced9fe3fd3860d19288b42485d7f02346;p=misc diff --git a/todo_templates/todo.html b/todo_templates/todo.html index 404ac1c..88fa72b 100644 --- a/todo_templates/todo.html +++ b/todo_templates/todo.html @@ -1,157 +1,140 @@ {% extends 'base.html' %} {% block css %} -th.toplevel { padding-right: 1em; } -input[type="submit"].delete { background-color: #ff7777; } -div.delete { float: right; } +tr.toplevel th { padding-right: 1em; } td.center { text-align: center; } +tr.toplevel td, tr.toplevel th { padding-top: 1em; } +tr.lowlevel td, tr.lowlevel th { padding-top: 0em; } {% endblock %} {% block content %}

edit todo

-
+ - + - - - - - - - - + + + - - + + + - - - - - - - - - - - - - + + - - - - - - - - + + - - - + + +{% endif %} - - -
task{{ todo.task.title.then|e }}
default effort{{ todo.default_effort }}
task +{{ todo.task.title.then|e }} +{% if todo.task.comment %} +
{{ todo.task.comment|e }}
+{% else %} +
  +{% endif %} +
efforts
work + +done
+(all days: {{todo.all_days_effort}})
+(dependencies: {{todo.all_days_effort}}) +
- + + + + + {% for date, effort in todo.efforts.items() %} - + {% endfor %} - +
dateeffortdelete
dateeffortdelete
- +{{date}} - + -{% if not (todo.children and effort) %}{% endif %} +{% if not (todo.deps and effort) %}{% endif %}
- +
total effort{{todo.all_days_effort}}
importance - -
comment - +
comment +
done -{% if todo.children %}✓{% else %}{% endif %} -
day tags -{% for tag in tags | sort %} -{% if tag in todo.task.tags.now %} - âœ“ -{% else %} - -{% endif %} {{ tag }} +
tags +new: +{% for tag in todo.task.tags.now | sort %}{% endfor %} +{{ macros.tagselection(submit_name='tag', selected_tags=todo.day_tags, all_tags=tags) }}
-{% endfor %} -add:
parents +{% if todo.dependers %} +
dependers
children - - - - -{% for todo in child_todos %} - - - - - -{% endfor %} - - + + +
adoptefforttitlecomments
{{ '{:2.1f}'.format(todo.all_days_effort) }} {% if todo.done %}✓{% else %} {% endif %}{{todo.day.date}} {{todo.title}}
--------
dependencies +{% if todo.deps %} + + + -{% for todo in filtered_todos %} - - +{% for todo in dep_todos %} + + + {% endfor %}
adoptedefforttitlecomments
{{ '{:2.1f}'.format(todo.all_days_effort) }} {% if todo.done %}✓{% else %} {% endif %} {{todo.day.date}} {{todo.title}}{{todo.comment}}
+{% endif %} +
+make from task:
+
+adopt (from to ):
+ + +{% for todo in filtered_todos %} +{% endfor %} + + +{% for task in filtered_tasks %} +{% endfor %} +
- +
- -
-{% include 'tagfilters.html' %} -
-from: -to: -search: - - -{% include 'watch_form.html' %} - {% endblock %}