X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=todo_templates%2Ftask.html;h=c26d33a9d8d30d7b4c8efebe938b1aed86bc2b4d;hb=2ad9f7785539c0cd9f119d1f22b8057fab348114;hp=7a8f981fef608cbad413a66b866ad452cbbfdc88;hpb=979de59ced9fe3fd3860d19288b42485d7f02346;p=misc diff --git a/todo_templates/task.html b/todo_templates/task.html index 7a8f981..c26d33a 100644 --- a/todo_templates/task.html +++ b/todo_templates/task.html @@ -1,18 +1,45 @@ {% extends 'base.html' %} + + {% block css %} -th { padding-right: 1em; } +tr.toplevel th { padding-right: 1em; } +tr.toplevel td, tr.toplevel th { padding-top: 1em; } +tr.lowlevel td, tr.lowlevel th { padding-top: 0em; } {% endblock %} + + +{% macro draw_task(task) %} +{{task.title.now}} +{% endmacro %} + + + +{% macro task_with_deps(task, indent) %} +{% for i in range(indent) %}  {% if loop.last %}+{% endif %}{% endfor %} +{{ draw_task(task) }}
+{% for task in task.deps %} +{{ task_with_deps(task, indent+1) }} +{% endfor %} +{% endmacro %} + + + {% block content %}

edit task

-
+ - - + + + + + + + - + - + - + - +{% if task.dependers %} + + + + +{% endif %} + + +{{ macros.datalist_tasks(filtered_tasks) }} -{% for subtask in filtered_tasks %} - - +{% if task.deps %} + + +
add as todo to {{ selected_date }}
title @@ -27,19 +54,16 @@ th { padding-right: 1em; }
comment - +
default effort -{% if task.subtasks %} -{{ task.default_effort.now }} -{% else %}
history @@ -49,19 +73,13 @@ th { padding-right: 1em; } {% endfor %}
-{% endif %}
tags -{% for tag in tags | sort %} - {{ tag }} -
-{% endfor %} -add: -
+add: {{ macros.tagselection(submit_name='tag', selected_tags=task.tags.now, all_tags=tags) }}
history
    @@ -73,52 +91,72 @@ add:
dependers + +
children +{% if task.deps %} - -{% for subtask in task.subtasks %} - +{% for dep in task.deps %} + {% endfor %} - - - +
- + -{{subtask.title.now}} +{% if dep.deps %} +
+ +{% endif %} +{{ draw_task(dep)}} +{% if dep.deps %} + +{% for s in dep.deps %} +{{ task_with_deps(s, 1) }} +{% endfor %} +
+{% endif %}
---
+{% endif %} +add: +
- -
as chain -{{subtask.title.now}} -
+{% for dep in task.deps_chain %} + + + {% endfor %} -
{{dep.deps_depth}}{{dep.title.now}}
+{% endif %} - -
-{% include 'tagfilters.html' %} -
-search: - + +
+ +
- -{% include 'watch_form.html' %} - {% endblock %}