{% extends "base.html" %} {% block title %}History ยท hevy2garmin{% endblock %} {% block content %} {% if history %}
{% for h in history %} {% endfor %}
Synced Title Calories Avg HR Garmin ID Status
{{ h.synced_at.strftime('%Y-%m-%d %H:%M') if h.synced_at.strftime is defined else h.synced_at }} {{ h.title }} {{ h.calories or 'โ€”' }} {{ h.avg_hr or 'โ€”' }} {{ h.garmin_activity_id or 'โ€”' }} {{ h.status }}
{% else %}

No workouts synced yet

Go to Workouts and click Sync.

{% endif %} {% endblock %}