{% extends "base.html" %} {% block nav %} {% endblock %} {% block content %}

{{ task.id }} — {{ task.title }}

Slug
{{ task.slug }}
Status
{{ task.status_stage }}
Active stage
{{ active_stage or "none" }}
Updated

Summary

Todo progress: {{ todos_done }}/{{ todos_total }} done

Questions: {{ questions_open }}/{{ questions_total }} open

Validation: {{ validation_status }}

Lock: {{ lock_stage }}

Next action

{% if next_action %}

Action: {{ next_action.action or "none" }}

Reason: {{ next_action.reason or "none" }}

{% else %}

No next action.

{% endif %}

Description

{{ task.body or task.description_summary or "(no description)" }}

Relationships

{% if relationships %}
{{ relationships }}
{% else %}

none

{% endif %}

Requirements

{% if requirements %} {% else %}

none

{% endif %}

Files

{% if links %} {% else %}

none

{% endif %}

Accepted plan

{% if accepted_plan %}

Version: {{ accepted_plan.plan_version }}

{{ accepted_plan.body or "(accepted plan body is empty)" }}
{% else %}

No accepted plan.

{% endif %}

Acceptance criteria

{% if acceptance_criteria %}
    {% for criterion in acceptance_criteria %}
  1. {{ criterion.id }} — {{ criterion.text }}
  2. {% endfor %}
{% else %}

none

{% endif %}

Todos

{% if todos %} {% else %}

none

{% endif %}

Implementation runs

{% if implementation_runs %} {% else %}

none

{% endif %}

Changes

{% if changes %} {% else %}

none

{% endif %}

Checks

{% if checks %} {% else %}

none

{% endif %}

Validation

{% if validation_report %}
{{ validation_report }}
{% else %}

none

{% endif %}
{% if command_logs %}

Command log

{% endif %} {% if events %}

Events

{% else %}

Events

none

{% endif %} {% endblock %}