{% extends 'base.html' %} {% block css %} table.alternating tr:nth-child(even) { background-color: #f2f2f2; } table.alternating tr:nth-child(odd) { background-color: #ffffff; } td.number { text-align: right; } {% endblock %} {% block content %}
{% include 'tagfilters.html' %}
{% for uuid, t in db.tasks.items() | sort(attribute='1.title') %} {% if t.visible %} {% endif %} {% endfor %}
default
weight
tasktags
{{ t.default_weight }} {{ t.title|e }} {% for tag in t.tags | sort %}{{ tag }} {% endfor %}
{% endblock %}