X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=todo_templates%2Ftask.html;h=85347efece93587e0f595050af3880ad9ec6e956;hb=28bd91c52ce1eab2b26793097e0d9cabc3c33c64;hp=ef2402daec9847013e77e71adec306b5f00d5bc8;hpb=942c977e0052d09300625e7a5c1b5fc2eede9098;p=misc diff --git a/todo_templates/task.html b/todo_templates/task.html index ef2402d..85347ef 100644 --- a/todo_templates/task.html +++ b/todo_templates/task.html @@ -8,11 +8,14 @@ input[type="text"] { width: 100% } textarea { width: 100% }; {% endblock %} {% block content %} -
+

edit task

+ + + - +
title
history
    {% for k,v in task.title_history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }}{% endfor %}
selected for {{db.selected_date}}
comment
default effort
history
    {% for k,v in task.default_effort_history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }}{% endfor %}
tags @@ -22,26 +25,36 @@ textarea { width: 100% }; add:
history
    {% for k,v in task.tags_history.items() | sort(attribute='0', reverse=True) %}
  • {{ k }}: {{ v|e }}{% endfor %}
links
children -{% for other_task_id, other_task in db.tasks.items() | sort(attribute='1.title') %} -{% if task.id_ != other_task_id and other_task.visible and other_task_id in task.links %} - {{ other_task.title|e }}
-{% endif %} + +{% for subtask in linked_tasks %} + + + + {% endfor %} -{% for other_task_id, other_task in db.tasks.items() | sort(attribute='1.title') %} -{% if task.id_ != other_task_id and other_task.visible and not other_task_id in task.links %} -{{ other_task.title|e }}
-{% endif %} + + + +{% for subtask in filtered_tasks %} + + + + {% endfor %} +
{{subtask.title}}
---
{{subtask.title}}
-
- + + {% include 'tagfilters.html' %} +
+search: +
{% include 'watch_form.html' %} {% endblock %}