{% extends 'core/export.html' %} {% load i18n %} {% block body %}

{% trans 'Tasks' %}

{% for task in tasks %}

{% trans 'Task' %}

{% trans 'Key' %}: {{ task.key }}

{% if task.comment %}

{% trans 'Comment' %}: {{ task.comment }}

{% endif %}

{% trans 'Title' %}: {{ task.title }}

{% trans 'Text' %}: {{ task.text }}

{% if task.conditions.all %}

{% trans 'Conditions' %}:

{% endif %} {% if task.timeframe %}

{% trans 'Timeframe' %}:

{% endif %} {% endfor %} {% endblock %}