home · contact · privacy
Imporove todo accounting.
[misc] / todo_templates / tasks.html
index 34976eb5396278b803711111bafc48ab57f03416..29ae64f31ca1855c3ced973c39a9e41c6140f696 100644 (file)
@@ -13,11 +13,11 @@ td.number { text-align: right; }
 {% include 'tagfilters.html' %}
 </form>
 <table class="alternating">
-<tr><th>default<br />weight</th><th>task</th><th>tags</th></tr>
+<tr><th>default<br />effort</th><th>task</th><th>tags</th></tr>
 {% for uuid, t in db.tasks.items() | sort(attribute='1.title') %}
 {% if t.visible %}
 <tr>
-<td class="number">{{ t.default_weight }}</a></td>
+<td class="number">{{ t.default_effort }}</a></td>
 <td><a href="{{db.prefix}}/task?id={{ uuid }}" />{{ t.title|e }}</a></td>
 <td>{% for tag in t.tags | sort %}<a href="{{db.prefix}}/tasks?t_and={{tag|e}}">{{ tag }}</a> {% endfor %}</td>
 {% endif %}