{% extends "base.html" %} {% from "components/primitives/catalog_primitives.html" import accordion %} {% block title %}{{ page_title }} ยท {{ app_title }}{% endblock %} {% block content %} {% include "components/page_header.html" %}
{% include "components/product_console_state.html" %} {% if has_layout %}
{% for block in layout_blocks %}
{% include "components/layout_block.html" %}
{% endfor %}
{% else %}

{{ pc_labels.latest_run }}

{% if latest_run %}
{{ latest_run.id }}
{{ pc_labels.status }}: {{ latest_run.status }}
{{ pc_labels.open_run }} {% else %}
No latest run available.
{% endif %}

{{ pc_labels.kpis }}

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

{{ pc_labels.summary }}

{% if summary_items %}
{% for item in summary_items %}
{{ item.key }}
{{ item.value }}
{% endfor %}
{% else %}
No summary data available.
{% endif %}
{% set technical_details_items = [{'title': pc_labels.technical_details, 'open': false}] %} {% call(item) accordion( items=technical_details_items, accordion_id='technical-details-accordion', accordion_class=components.accordion_class, accordion_variant=components.accordion_variant|default('default') ) %} {% if dashboard %}
{{ dashboard | tojson(indent=2) }}
{% else %}
No dashboard payload available.
{% endif %} {% endcall %}
{% endif %}
{% endblock %}