{# Runs table fragment - can be loaded independently via HTMX #} {% if runs %}
| Run ID | Project | Status | Created | Actions |
|---|---|---|---|---|
| {{ run.run_id | short_id }} | {{ run.project }} | {% if run.status == 'FINISHED' %} {{ run.status }} {% elif run.status == 'FAILED' %} {{ run.status }} {% elif run.status == 'RUNNING' %} {{ run.status }} {% else %} {{ run.status }} {% endif %} | {{ run.created_at | ago }} | View |
No runs found
{% if filters and (filters.q or filters.project or filters.status) %}Try adjusting your filters
{% endif %}