{% extends "base.html" %} {% block title %}Sync History - MySQL to Sheets Sync{% endblock %} {% block breadcrumbs %} {{ breadcrumb([{'label': 'Sync', 'url': '/'}, {'label': 'History'}]) }} {% endblock %} {% block page_title %}Sync History{% endblock %} {% block page_subtitle %} v{{ version }} {% endblock %} {% block content %}

All Syncs ({{ total }} total)

{% if history %}
{% for entry in history %} {% endfor %}
Time Status Rows Sheet Duration Message
{{ entry.timestamp }} {% if entry.success %} Success {% else %} Failed {% if entry.error_code %} {{ entry.error_code }} {% endif %} {% endif %} {{ entry.rows_synced }} {{ entry.worksheet }} {{ entry.duration_ms }}ms {{ entry.message }}
{% if total_pages > 1 %}
{% if page > 1 %} Previous {% endif %} Page {{ page }} of {{ total_pages }} {% if page < total_pages %} Next {% endif %}
{% endif %} {% else %}

No sync history yet

Run your first sync from the dashboard.

{% endif %}
{% endblock %}