X-Git-Url: https://plomlompom.com/repos/?p=misc;a=blobdiff_plain;f=todo_templates%2Ftasks.html;fp=todo_templates%2Ftasks.html;h=80f5a603efbd123a7d13e0954569bb61f0bbcbb5;hp=cd5ef0ff7c7a69247ae415b3d9cf24bdfe64af81;hb=ecee822bebf62049803b90fc8d8a0b484915a0fc;hpb=11df024d5f24e8d7916f57c907975ebe27db617f diff --git a/todo_templates/tasks.html b/todo_templates/tasks.html index cd5ef0f..80f5a60 100644 --- a/todo_templates/tasks.html +++ b/todo_templates/tasks.html @@ -1,13 +1,6 @@ {% extends 'base.html' %} -{% block css %} -table.alternating tr:nth-child(even) { - background-color: #cccccc; -} -table.alternating tr:nth-child(odd) { - background-color: #ffffff; -} -{% endblock %} + {% block content %}

review tasks

@@ -24,6 +17,7 @@ match: {{ macros.sort_head(sort, "default_effort", "effort") }} {{ macros.sort_head(sort, "weight", "weight") }} {{ macros.sort_head(sort, "title", "task") }} +{{ macros.sort_head(sort, "latest_effort_date", "last todo") }} tags {% for t in tasks %} @@ -33,10 +27,11 @@ match: {{ '{:5.1f}'.format(t.default_effort.now) }} -{{ '{:5.1f}'.format(t.subtask_weight) }} +{{ '{:5.1f}'.format(t.deps_weight) }} {{ t.title.now|e }} +{{ t.latest_effort_date }} {% for tag in t.tags.now | sort %}{{ tag }} {% endfor %} {% endif %}