{% extends "base.html" %} {% block title %}{{ concept.name or concept.slug or concept_id }} — Foundry — ICDEV{% endblock %} {% block content %} {# Context (from tools/foundry/blueprint.py :: foundry_detail): concept : dict — full foundry_concepts row (+ decoded cluster_signal_ids list) spec : dict|None — foundry_specs (spec_md, canvas_contract, task_count) tasks_emitted : list[dict] — foundry_tasks_emitted (kanban_task_id, epic, seq, + live kanban_status enriched by the blueprint) outcomes : list[dict] — foundry_outcomes (outcome, metric, detail, created_at) statuses : CONCEPT_STATUSES #}
| Seq | Epic | Task | Live status |
|---|---|---|---|
| {{ t.seq if t.seq is not none else '—' }} | {{ t.epic or '—' }} | {{ t.kanban_task_id }} | {% if t.kanban_status %} {{ t.kanban_status }} {% else %} — {% endif %} |