{# Auto-refresh table rows so updated deltas are visible immediately #}
{% if summary.ok %}{{ summary.ok }} fetched{% endif %}
{% if summary.failed %}{{ summary.failed|length }} failed{% endif %}
{% if summary.missing %}{{ summary.missing|length }} missing{% endif %}
{% if summary.failed %}
View failures ({{ summary.failed|length }})
{% for f in summary.failed %}
{{ f.key }} — {{ f.error }}
{% endfor %}
{% endif %}
{% if summary.missing %}
View missing ({{ summary.missing|length }})
{% for m in summary.missing %}
{{ m.key }} — {{ m.reason }}
{% endfor %}
{% endif %}