{% extends "control_plane/base.html" %} {% block title %}{{ project.name }} / Artifex{% endblock %} {% block content %}

{{ project.name }}

{{ project.goal }}

{{ project.repository_path|default:project.repository_url }}

Project BrainArchaeologist
{% csrf_token %}
Status
{{ project.status }}

{{ warnings|join:", "|default:"No active warnings" }}

Current Plan

v{{ plan.version|default:"none" }} {{ plan.scope|default:"" }}

Tasks

{{ tasks|length }} total

Scenario Coverage

{% for key,value in scenario_coverage.items %}{{ key }}: {{ value }} {% empty %}None{% endfor %}

Project DAG

{% include "control_plane/partials/project_dag.html" %}

Graph Runs

{% include "control_plane/partials/graph_run_table.html" with graph_runs=graph_runs %}

Roadmap NOW

{% for item in roadmap.NOW %}

{{ item.title }} {{ item.target_action }}

{% empty %}

No NOW items.

{% endfor %}

Latest Commits

{% for commit in commits %}

{{ commit.sha|slice:":10" }} {{ commit.message|truncatechars:90 }}

{% empty %}

No commits.

{% endfor %}

Activity

{% include "control_plane/partials/event_list.html" with events=activity %}
{% endblock %}