{{ filename }} Todo List

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