{% extends "base.html" %} {% block title %}{{ project.name }} - Kanban Board{% endblock %} {% block content %} {# Destination stage for planned work: Backlog, or the first stage when no Backlog stage exists (mirrors the server-side chat-plan fallback). #} {% set backlog_stage = project.stages | selectattr('key', 'equalto', 'backlog') | first %} {% set plan_stage = backlog_stage or (project.stages | first) %} {% set new_task_default_stage = plan_stage %}
Planning proposes task cards for {{ plan_stage.name if plan_stage else 'Backlog' }}. Review before creating.
{{ project.path }}
{% else %}
Missing prerequisite: Set a project folder for workspace files.
{% endif %}
No tasks match these filters. Clear filters to see all tasks.