{% extends "base.html" %} {% block title %}{{ page_title }} ยท {{ app_title }}{% endblock %} {% block content %}
{% include "components/product_console_state.html" %}

Latest run

{% if latest_run %}
{{ latest_run.id }}
Status: {{ latest_run.status }}
Open run {% else %}
No latest run available.
{% endif %}

KPIs

{% if kpi_items %} {% for item in kpi_items %}
{{ item.label }}
{{ item.value }}
{% endfor %} {% else %}
No KPI items available.
{% endif %}

Summary

{% if summary_items %}
{% for item in summary_items %}
{{ item.key }}
{{ item.value }}
{% endfor %}
{% else %}
No summary data available.
{% endif %}

Details

{% if dashboard %}
{{ dashboard | tojson(indent=2) }}
{% else %}
No dashboard payload available.
{% endif %}
{% endblock %}