X-Git-Url: https://plomlompom.com/repos/%22https:/validator.w3.org/static/git-favicon.png?a=blobdiff_plain;f=todo_templates%2Ftasks.html;h=90f43585e1b956f8be0562e21b8398e5450746dd;hb=59056f396c4761f9cd7ffbc569e3ddf8994d5e83;hp=7943b8231eb233630ac3871f0687186960ba8a89;hpb=13a15b95ade73f4455db648b70e1de784c515039;p=misc diff --git a/todo_templates/tasks.html b/todo_templates/tasks.html index 7943b82..90f4358 100644 --- a/todo_templates/tasks.html +++ b/todo_templates/tasks.html @@ -1,4 +1,5 @@ {% extends 'base.html' %} + {% block css %} table.alternating tr:nth-child(even) { background-color: #cccccc; @@ -6,44 +7,47 @@ table.alternating tr:nth-child(even) { table.alternating tr:nth-child(odd) { background-color: #ffffff; } -td.number { text-align: right; } -tr.expanded { color: #888888; } {% endblock %} + {% block content %} -
+

review tasks

+ + {% include 'tagfilters.html' %} +
+match: +
- - -{% for uuid, t in db.tasks.items() | sort(attribute='1.title') %} +
default
effort
tasktags
+ + + + + + +{% for t in tasks %} {% if t.visible %} - - + + - - - -{% if uuid == expand_uuid %} -{% for uuid, t in expanded_tasks.items() %} - - - - +{{ t.title.now|e }} + -{% endfor %} -{% endif %} - {% endif %} {% endfor %} -
+effort + +depth + +todo +tags
{{ t.default_effort }} +{{ '{:5.1f}'.format(t.default_effort.now) }} + +{{ '{:5.1f}'.format(t.subtask_depth) }} + -{% if uuid == expand_uuid %} -[-] -{% elif t.links|count > 0 %} -[+] -{% endif %} -{{ t.title|e }}{% for tag in t.tags | sort %}{{ tag }} {% endfor %}
{{ t.default_effort }}  [+] {{ t.title|e }}{% for tag in t.tags | sort %}{{ tag }} {% endfor %}{% for tag in t.tags.now | sort %}{{ tag }} {% endfor %}
+ {% endblock %}