1 {% extends 'base.html' %}
8 <form action="tasks" method="POST">
9 {% include 'tagfilters.html' %}
11 match: <input name="search" value="{{search|e}}" />
12 <input id="filter_button" type="submit" name="filter" value="match" />
15 <table class="alternating">
17 {{ macros.sort_head(sort, "default_effort", "effort") }}
18 {{ macros.sort_head(sort, "weight", "weight") }}
19 {{ macros.sort_head(sort, "title", "task") }}
20 {{ macros.sort_head(sort, "latest_effort_date", "last todo") }}
27 {{ '{:5.1f}'.format(t.default_effort.now) }}
30 {{ '{:5.1f}'.format(t.deps_weight) }}
33 <a href="task?id={{ t.id_ }}" />{{ t.title.now|e }}</a></td>
34 <td>{{ t.latest_effort_date }}</td>
35 <td>{% for tag in t.tags.now | sort %}<a href="tasks?and_tag={{tag|e}}">{{ tag }}</a> {% endfor %}</td>