{% import "desc.html" as desc %}

Task Details

{% if task.start %} {% endif %} {% if task.due and task.status != 'completed' %} {% endif %} {% if task.scheduled %} {% endif%} {% if task.end %} {% endif %} {% if task.recur %} {% endif %}
Age {% if task.entry %}{{ date_proper(date=task.entry) }}{% endif %}
Depends on {% if task.depends %} {% for uuid in task.depends %} {%if tasks_db[uuid] %}{{ tasks_db[uuid].id }}{% endif %} {% endfor %} {% endif %}
Project {% if task.project %} {% endif %}
Tags
{% if task.tags %} {% for p in task.tags %} {{ p }} {% endfor %} {% endif %} {% if task.priority %} {{ task.priority }} {% endif %}
Description {{ desc::desc(task=task) }}
Urgency {{ task.urgency }}
Start {{ date_proper(date=task.start) }}
Due {{ date_proper(date=task.due, in_future=true) }}
Schd {{ date_proper(date=task.scheduled, in_future=true) }}
End {{ date_proper(date=task.end) }}
RECUR {{task.recur}}