{% extends "base.html" %} {% 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.run_list }}

{% if runs %} {% for run in runs %} {% endfor %}
{{ pc_labels.run_id }} {{ pc_labels.status }} {{ pc_labels.started }} {{ pc_labels.completed }}
{{ run.id }} {{ run.status }} {{ run.started_at if run.started_at is defined else '-' }} {{ run.completed_at if run.completed_at is defined else '-' }} {{ pc_labels.open }}
{% else %}
No runs available.
{% endif %}
{% endif %}
{% endblock %}