{{ filename }} Todo List
#
Title
Priority
Deadline
Time Needed
Description
{% for task in tasks %}
{{ loop.index }}
{{ task.title }}
{{ task.priority_label or '' }}
{{ task.deadline or '' }}
{{ task.expected_time_needed or '' }}
{% if task.description %}
Description
{% else %} {% endif %}
{% endfor %}
Back