{% i18n "You have %1 Tasks" anz %}
{% for task in tasks %}
{{ task.title }} {% if task.done %}---done---{% endif %}
{% if task.dueDate %} {% i18n "Due to:" %} {{ task.dueDate|date }} {% endif %} {% if task.text %}
{{ task.text|safe }}
{% endif %}
{% endfor %}