{% extends "layout.html" %} {% block content %}

Create New Task

Pending Tasks

{% if not tasks %}

No open tasks.

{% else %}
    {% for task in tasks %}
  • {{ task.name }} {% if task.activity_name %} {{ task.activity_name }} {% endif %}
    {% if task.activity_id %}
    {% endif %} {% if task.due_date %} Due: {{ task.due_date.strftime('%Y-%m-%d %H:%M') }} {% endif %}
  • {% endfor %}
{% endif %}

Auto-Added Templates

These tasks are automatically created when you start the associated activity. {% if not templates %}

No templates defined.

{% else %}
    {% for t in templates %}
  • {{ t.name }} (on {{ t.activity_name|default('Unknown Activity') }}) [Edit]
  • {% endfor %}
{% endif %}
{% endblock %}