{% if runs %}
{% for run in runs %} {% endfor %}
Run Status Duration Started
{{ run.name or run.id[:8] }}
{% if run.tags %}
{% for tag in run.tags|deserialize_json %} {{ tag }}{% if not loop.last %}·{% endif %} {% endfor %}
{% endif %}
{% if run.status == 'completed' %} done {% elif run.status == 'failed' %} fail {% elif run.status == 'running' %} run {% else %} {{ run.status }} {% endif %} {{ run.duration_seconds|format_duration }} {{ run.started_at|format_time_ago }}
{% else %}
No runs yet
{% endif %}