{% extends "base.html" %} {% block title %}Sync health — goetta-finance{% endblock %} {% block content %}

Sync health

{% if last_sync_local %}

Last sync: {{ last_sync_local.strftime("%Y-%m-%d %H:%M:%S %Z") }}

{% else %}

No successful syncs yet. Run goetta-finance sync.

{% endif %} {% if runs %} {% for r in runs %} {% endfor %}
Started Finished Accounts New Updated Warnings / errors
{{ r.started_at }} {{ r.finished_at or "—" }} {{ r.accounts_touched }} {{ r.transactions_new }} {{ r.transactions_updated }} {% for w in r.warnings_list %}
⚠ {{ w }}
{% endfor %} {% for e in r.errors_list %}
✗ {{ e }}
{% endfor %} {% if not r.warnings_list and not r.errors_list %}{% endif %}
{% endif %} {% endblock %}