X-Git-Url: https://plomlompom.com/repos/?p=misc;a=blobdiff_plain;f=todo_templates%2Fdo_todos.html;fp=todo_templates%2Fdo_todos.html;h=0000000000000000000000000000000000000000;hp=25211f0f0c0fbbde07334657b6f567f843f7e876;hb=2ad9f7785539c0cd9f119d1f22b8057fab348114;hpb=59056f396c4761f9cd7ffbc569e3ddf8994d5e83 diff --git a/todo_templates/do_todos.html b/todo_templates/do_todos.html deleted file mode 100644 index 25211f0..0000000 --- a/todo_templates/do_todos.html +++ /dev/null @@ -1,161 +0,0 @@ -{% extends 'base.html' %} - -{% block css %} -td.number, td.checkbox { text-align: center; } -td { vertical-align: middle; } -td button { padding: 0em; } -th.centered { text-align: center; } -ul { margin: 0; } -details > summary { - list-style-type: none; -} -details > summary.has_dependers { - list-style-type: '▶'; -} -details[open] > summary.has_dependers { - list-style-type: '▼'; -} -details > summary.has_deps::after { - content: '▶'; -} -details[open] > summary.has_deps::after { - content: '▼'; -} -{% endblock %} - -{% block content %} -

do todos

- -
-{% include 'tagfilters.html' %} -
- hide done - -

-| prev | {{day.date}} | next | -comment: - - -

- -

-task quick-add: -don't adopt, make new: -

- -{% for task in all_tasks %} - -{% endfor %} - - -{% if adoptable_past_todos %} -

-

- -there are adoptable/unfinished past todos ({{adoptable_past_todos|count}}) - - - - - - - - - - -{% endfor %} -
adopt?datetitlecomment
{{todo.earliest_date}}{{todo.title|e}}{{todo.comment|e}}
-
-

-{% endif %} - - - - - - - - - - -{% for todo in todos %} - - - - - - - - -{% endfor %} - -
-done - -effort - -importance - -todo -comment
- - - - - - -{% if todo.dependers|length > 0 or todo.deps|length > 0 %} -
- -{% endif %} -{{todo.title|e}} -{% if todo.dependers|length > 0 or todo.deps|length > 0 %} - -{% if todo.dependers|length > 0 %} -dependers: -
    -{% for path in todo.depender_paths %} -
  • {% for depender_todo in path %}{{ depender_todo.title|e }} ▶ {% endfor %}… -{% endfor %} -
-{% endif %} -{% if todo.deps|length > 0 %} -depends on: -
    -{% for dep_todo in todo.deps %} -
  • [{% if dep_todo.done %}✓{% else %} {% endif %}] {{ dep_todo.title|e }}{% if dep_todo.deps|length > 0 %} ▶{% endif %} -{% endfor %} -
-{% endif %} -
-{% endif %} -
- -
- -
- -{% include 'watch_form.html' %} - -{% endblock %}