{% extends "base.html" %}
{% block title %}{{ tr("Activity") }} · clear-record{% endblock %}
{% block body %}
{# The pipeline status page: one node's answer to "what is
clear-record doing right now". The shared queue's live runs across every
project first — a run an agent's MCP server started is here with
the same fields as one this console started — then the newest
finished runs, each with the outcome it recorded. The header chip is fed
from the same registry reads, so the header and this page cannot disagree. #}
{{ tr("Activity") }}
{# One node's view: the rows name the machine that measured or claimed them,
and there is deliberately no aggregation across nodes (a non-goal). #}
{{ tr("This node") }}: {{ machine }}
{{ tr("In flight") }}
{% for row in live %}
{% include "_activity_run.html" %}
{% else %}
{{ tr("No runs in flight.") }}
{% endfor %}
{{ tr("Recently finished") }}
{% for row in history %}
{% include "_activity_run.html" %}
{% else %}