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

Tasks

Open
Due Today
Completed
{% for act in activities %} {% set act_tasks = [] %} {% for t in tasks %} {% if t.activity_id|string == act._id|string %} {% if act_tasks.append(t) %}{% endif %} {% endif %} {% endfor %}

{{ act.name }}

    {% for task in act_tasks %}
  • {{ task.name }} {% if task.due_date %} {{ task.due_date.strftime('%d. %b %H:%M') }} {% endif %}
  • {% endfor %}
{% endfor %} {% set no_act_tasks = [] %} {% for t in tasks %} {% if not t.activity_id %} {% if no_act_tasks.append(t) %}{% endif %} {% endif %} {% endfor %} {% if no_act_tasks %}

Inbox / No Activity

    {% for task in no_act_tasks %}
  • {{ task.name }} {% if task.due_date %} {{ task.due_date.strftime('%d. %b %H:%M') }} {% endif %}
  • {% endfor %}
{% endif %}
{% if templates %}
Manage Auto-Added Templates
    {% for t in templates %}
  • {{ t.name }} (on {{ t.activity_name|default('Unknown') }}) Edit
  • {% endfor %}
{% endif %}
{% endblock %}