home · contact · privacy
Improve accounting scripts.
[misc] / todo_templates / tasks.html
index 34976eb5396278b803711111bafc48ab57f03416..7d245dc9aba46139f8889c61eb6895eb988de9e1 100644 (file)
@@ -1,7 +1,7 @@
 {% extends 'base.html' %}
 {% block css %}
 table.alternating tr:nth-child(even) {
-    background-color: #f2f2f2;
+    background-color: #e2e2e2;
 }
 table.alternating tr:nth-child(odd) {
     background-color: #ffffff;
@@ -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 %}