{% extends "base.html" %} {% block content %}
{# ── Summary Stats ────────────────────────────────────── #}| ID | Started | Finished | Status | Rows | Duration | Error |
|---|---|---|---|---|---|---|
| {{ run.id }} | {{ run.started_at or '—' }} | {{ run.finished_at or '—' }} | {% if run.status == 'success' %} success {% elif run.status == 'failed' %} failed {% elif run.status == 'running' %} running {% else %} {{ run.status or '—' }} {% endif %} | {{ "{:,}".format(run.rows_written) if run.rows_written is not none else '—' }} | {% if run.started_at and run.finished_at %} {{ "%.1f".format(run.duration_seconds) if run.duration_seconds is defined else '—' }} {% else %} — {% endif %} | {{ run.error or '—' }} |
No run history available for this poller.