{# The app chrome โ€” the kit's .mgf-console shell (mgf/console.html, M1 P4.2) with ProofWarden's chrome in its blocks: the global run pill + CI/print actions in the top bar; the project nav + the authority legend in the rail. The shell markup/CSS live in mgf-brand-web (one source of truth); only test-web content lives here. #} {% extends "mgf/console.html" %} {% block title %}ProofWarden โ€” testing & CI authority{% endblock %} {% block mark_title %}ProofWarden{% endblock %} {% block mark_sub %}testing & CI authority{% endblock %} {% block topbar %} {{ chrome.pill.label }} {% if chrome.pill.counts %}{{ chrome.pill.counts }}{% endif %} {% if chrome.ci_slug %}Open CI{% endif %} {% endblock %} {% block rail_label %}Projects{% endblock %} {% block rail %}
Projects
{% for p in chrome.projects %} {{ p.name }}{% if p.live %} {% endif %} {% if p.kind %}{{ p.kind }} ยท {% endif %}{{ p.label }} {% else %}

no projects discovered

{% endfor %}
Authority & status
{% for state, desc in chrome.legend %}
{{ desc }}
{% endfor %}

The warden is the sole executor โ€” the console submits run requests, it never runs a test. A second launch of a running test is coalesced, not double-run. Live logs are telemetry; the run-record is the durable truth.

{% endblock %}