{% if progress.running %}
{{ progress.phase }}
{% if progress.docs_total > 0 %}
— {{ progress.docs_done }} / {{ progress.docs_total }} documents
{% else %}
{% endif %}
{% endif %}
{% extends "base.html" %} {% block title %}Dashboard — pngx-controller{% endblock %} {% block content %}
Triggered by: {{ last_run.triggered_by }} — Run #{{ last_run.id }}
| Name | URL | Status | Lag | Last run | Actions |
|---|---|---|---|---|---|
| {{ row.replica.name }} | {{ row.replica.url }} |
{{ row.status }}
{% if row.replica.suspended_at %}
{{ row.replica.consecutive_failures }} failures {% endif %} |
{{ row.lag }} | {% if row.last_run %} ✓ {{ row.last_run.docs_synced }} {% if row.last_run.docs_failed %} · ✗ {{ row.last_run.docs_failed }}{% endif %} {% else %} never {% endif %} | Details {% if row.replica.suspended_at %} {% endif %} |
No replicas configured. Add one →
{% endif %} {% endblock %}