← {{ iteration.title() }}

Kanban Board

○ Open ({{ open_tasks.len() }})
{% for task in open_tasks %}
{{ task.id_short }} · Phase {{ task.phase }}
{% endfor %} {% if open_tasks.is_empty() %}
no tasks
{% endif %}
◐ In Progress ({{ in_progress_tasks.len() }})
{% for task in in_progress_tasks %}
{{ task.id_short }} · Phase {{ task.phase }}
{% endfor %} {% if in_progress_tasks.is_empty() %}
no tasks
{% endif %}
● Done ({{ done_tasks.len() }})
{% for task in done_tasks %}
{{ task.id_short }} · Phase {{ task.phase }}
{% endfor %} {% if done_tasks.is_empty() %}
no tasks
{% endif %}
✗ Cancelled ({{ cancelled_tasks.len() }})
{% for task in cancelled_tasks %}
{{ task.id_short }} · Phase {{ task.phase }}
{% endfor %} {% if cancelled_tasks.is_empty() %}
no tasks
{% endif %}