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

Run list

{% if runs %} {% for run in runs %} {% endfor %}
Run ID Status Started 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 '-' }} Open
{% else %}
No runs available.
{% endif %}
{% endif %}
{% endblock %}