{% extends "base.html" %} {% block title %}My Account - MyWhoosh Garmin Sync{% endblock %} {% block content %}

{{ user.name }}

Edit
{% include "fragments/account_status.html" %}
{% if user.action_reason == "mywhoosh_device_conflict" %}

MyWhoosh device conflict

MyWhoosh reports this account is already logged in on another device. Log out of MyWhoosh there (app or website), then retry the sync.

{% endif %}

Recent sync runs

{% if recent_runs %} {% for run in recent_runs %} {% if run.summary_error %} {% endif %} {% endfor %}
Started Finished Status Discovered Imported Skipped Failed
{{ run.started_at }} {{ run.finished_at or "-" }} {{ run.status.value }} {{ run.discovered_count }} {{ run.imported_count }} {{ run.skipped_count }} {{ run.failed_count }}
{{ run.summary_error }}
{% else %}

No sync runs yet.

{% endif %}
{% endblock %}