{% extends "base.html" %} {% block title %}Sync health — goetta-finance{% endblock %} {% block content %}
Last sync: {{ last_sync_local.strftime("%Y-%m-%d %H:%M:%S %Z") }}
{% else %}No successful syncs yet. Run goetta-finance sync.
| 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 %}
|