{# Jobs list — rendered as HTMX partial #}

Active Jobs

{% if active_jobs %} {% for j in active_jobs %}
{{ j.id }} {{ j.status }}
{{ j.sql }}
{{ (j.progress * 100) | round }}%
{% if j.rows_processed %}
{{ j.rows_processed }} rows processed
{% endif %}
{% endfor %} {% else %}
No active jobs
{% endif %}

Job History

{% if history_jobs %} {% for j in history_jobs %}
{{ j.id }} {{ j.sql }} {{ j.rows_processed }} rows {{ j.status }}
{{ j.sql }}
{% if j.error %}
{{ j.error }}
{% endif %} {% if j.worker_id %}
Worker: {{ j.worker_id }}
{% endif %}
{% if j.status == 'completed' %} {% endif %} {% if j.status == 'failed' %} {% endif %}
{% endfor %} {% else %}
No job history
{% endif %}