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 {{ macros.sort_head(sort, "default_effort", "effort") }}
25 {{ macros.sort_head(sort, "weight", "weight") }}
26 {{ macros.sort_head(sort, "title", "task") }}
33 {{ '{:5.1f}'.format(t.default_effort.now) }}
36 {{ '{:5.1f}'.format(t.subtask_weight) }}
39 <a href="task?id={{ t.id_ }}" />{{ t.title.now|e }}</a></td>
40 <td>{% for tag in t.tags.now | sort %}<a href="tasks?and_tag={{tag|e}}">{{ tag }}</a> {% endfor %}</td>