X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;ds=sidebyside;f=todo_templates%2Ftasks.html;h=90f43585e1b956f8be0562e21b8398e5450746dd;hb=59056f396c4761f9cd7ffbc569e3ddf8994d5e83;hp=29ae64f31ca1855c3ced973c39a9e41c6140f696;hpb=942c977e0052d09300625e7a5c1b5fc2eede9098;p=misc diff --git a/todo_templates/tasks.html b/todo_templates/tasks.html index 29ae64f..90f4358 100644 --- a/todo_templates/tasks.html +++ b/todo_templates/tasks.html @@ -1,27 +1,53 @@ {% extends 'base.html' %} + {% block css %} table.alternating tr:nth-child(even) { - background-color: #f2f2f2; + background-color: #cccccc; } table.alternating tr:nth-child(odd) { background-color: #ffffff; } -td.number { text-align: right; } {% endblock %} + {% block content %} -
+

review tasks

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