{# Partial: module runs table for group_run_detail.html. Polls while running. #}
Module runs {{ group_run.status }} {% if group_run.duration_s is not none %} · {{ group_run.duration_s | duration }}{% endif %}
{% if module_runs %} {% for r in module_runs %} {% endfor %}
run module started duration status rows
#{{ r.id }} {{ r.module_name }} {{ r.started_at | localtime }} {{ r.duration_s | duration }} {{ r.status }} {{ r.row_count if r.row_count is not none else "—" }}
{% elif group_run.status == 'running' %}
Waiting for module runs to start…
{% else %}
No module runs recorded.
{% endif %}