1 {% extends 'base.html' %}
4 table.alternating tr:nth-child(even) {
5 background-color: #cccccc;
7 table.alternating tr:nth-child(odd) {
8 background-color: #ffffff;
15 <form action="tasks" method="POST">
16 {% include 'tagfilters.html' %}
18 match: <input name="search" value="{{search|e}}" />
19 <input id="filter_button" type="submit" name="filter" value="match" />
22 <table class="alternating">
24 <th class="centered{% if sort=='default_effort' %} desc{% endif %}">
25 <a href="?sort=default_effort">effort</a>
27 <th {% if sort=='depth' %}class ="desc"{% endif %}>
28 <a href="?sort=depth">depth</a>
30 <th {% if sort=='title' %}class="desc"{% endif %}>
31 <a href="?sort=title">todo</a>
39 {{ '{:5.1f}'.format(t.default_effort.now) }}
42 {{ '{:5.1f}'.format(t.subtask_depth) }}
45 <a href="task?id={{ t.id_ }}" />{{ t.title.now|e }}</a></td>
46 <td>{% for tag in t.tags.now | sort %}<a href="tasks?and_tag={{tag|e}}">{{ tag }}</a> {% endfor %}</td>