{% if jobs %} {% for j in jobs %} {% set jid = j.id | string %} {% set rid = j.record_id | string %} {% if j.status == 'failed' and j.error %} {% endif %} {% endfor %}
JobWorkflowRecordSchema TriggerStatusCreatedDuration
{{ jid[:8] }}… {{ j.workflow_name }} {{ rid[:8] }}… {{ j.schema_name }} {{ j.trigger }} {% if j.status == 'completed' %} ✓ completed {% elif j.status == 'running' %} running {% elif j.status == 'failed' %} ✗ failed {% else %} · pending {% endif %} {{ j.created_at.strftime('%H:%M:%S') }} {% if j.started_at and j.finished_at %} {{ ((j.finished_at - j.started_at).total_seconds()) | round(1) }}s {% elif j.started_at %} running… {% else %} — {% endif %}
{{ j.error }}
{% else %}

No jobs yet. Run a workflow from the Workflows page.

{% endif %}