{% 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

{% include 'tagfilters.html' %}
match:
{% for t in tasks %} {% if t.visible %} {% endif %} {% endfor %}
effort depth todo tags
{{ '{:5.1f}'.format(t.default_effort.now) }} {{ '{:5.1f}'.format(t.subtask_depth) }} {{ t.title.now|e }} {% for tag in t.tags.now | sort %}{{ tag }} {% endfor %}
{% endblock %}