{% from '_status.html' import status_dot %} {% if runs %}
{% for run in runs %}
{{ run.workflow_name }} {{ status_dot(run.status.value) }} {{ run.status.value }}
{{ run.id }} {{ run.backend_name }}
{{ run.progress[0] }}/{{ run.progress[1] }}
{% if run.total_cpu_hours >= 1 %}{{ "%.1f"|format(run.total_cpu_hours) }}h {% elif run.total_cpu_hours > 0 %}{{ "%.1f"|format(run.total_cpu_hours * 60) }}m {% else %}—{% endif %}
{% endfor %}
{% else %}

No runs yet

Run a workflow above to create a run.

{% endif %}