{% extends "base.html" %} {% block head %} {% endblock %} {% block content %}

Routines

Create Garmin planned workouts from your Hevy routines.

{{ stats.synced }}
On Garmin
{{ stats.total }}
In Hevy
{{ stats.pending }}
Pending
{% if not fetch_error %}
{{ stats.synced }} of {{ stats.total }} routines on Garmin
{% if stats.pending %}{{ stats.pending }} still pending — sync them in one go.{% elif stats.needs_update %}{{ stats.needs_update }} changed on Hevy — sync to update.{% else %}Everything is on your Garmin calendar.{% endif %} {% if stats.pending and stats.needs_update %}{{ stats.needs_update }} changed on Hevy since the last sync.{% endif %}
{% if routines %}
{% for r in routines %} {% include "routine_row.html" %} {% endfor %}
{% else %}
No routines found in your Hevy account.
{% endif %} {% else %}
Could not load routines: {{ fetch_error }}
{% endif %}
Upcoming schedule
{% include "routine_schedules.html" %}
{% endblock %}