{% extends "base.html" %} {% block title %}Dashboard — CalibreSync{% endblock %} {% block content %}
| Started | Finished | Status | New zips | Uploaded | Skipped | Errors |
|---|---|---|---|---|---|---|
| {{ r.started_at[:19].replace("T"," ") }} | {{ r.finished_at[:19].replace("T"," ") if r.finished_at else "—" }} | {{ r.status }} | {{ r.zips_new }} | {{ r.books_uploaded }} | {{ r.books_skipped }} | {{ r.books_errored }} |
No sync runs yet. Click "Run Sync" to start.
{% endif %}| Remote path | Size | Processed | Status | Error |
|---|---|---|---|---|
| {{ z.remote_path }} | {{ (z.file_size / 1048576) | round(1) }} MB | {{ z.processed_at[:19].replace("T"," ") if z.processed_at else "—" }} | {{ z.status }} | {{ z.error_msg or "" }} |
No zip archives processed yet.
{% endif %} {% if sync_running %} {% endif %} {% endblock %}