{% extends 'base.html' %} {% block content %}

review tasks

{% include 'tagfilters.html' %}
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") }} {% for t in tasks %} {% if t.visible %} {% endif %} {% endfor %}
tags
{{ '{:5.1f}'.format(t.default_effort.now) }} {{ '{:5.1f}'.format(t.deps_weight) }} {{ t.title.now|e }} {{ t.latest_effort_date }} {% for tag in t.tags.now | sort %}{{ tag }} {% endfor %}
{% endblock %}