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

{{ user.name }}

Edit Back to dashboard
Status
{{ user.health_state.value.replace("_", " ") }}
Enabled
{{ "Yes" if user.enabled else "No" }}
MyWhoosh state
{{ user.mywhoosh_state }}
Garmin state
{{ user.garmin_state }}
Action reason
{{ user.action_reason or "-" }}
Created at
{{ user.created_at }}
Updated at
{{ user.updated_at }}
{% if user.action_reason == "garmin_mfa_required" %}

Garmin MFA required

{% include "fragments/mfa_form.html" %}
{% elif 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 %}

Activities

{% endblock %}