{% extends "base.html" %} {% block title %}{{ workout.name }}{% endblock %} {% block content %}
Date: {{ workout.date }} | Status: {{ workout.status }}
{% if phase %}Phase: {{ phase.name }}
{% endif %} {% if workout.notes %}{{ workout.notes }}
{% endif %}| Exercise | Set | Reps | Weight | RPE | Notes |
|---|---|---|---|---|---|
| {{ s.exercise }} | {{ s.set_number }} | {{ s.reps or '—' }} | {{ s.weight or '—' }} | {{ s.rpe or '—' }} | {{ s.notes or '' }} |
No sets logged yet.
{% endif %} {% if workout.status == "plan" %} {% endif %} Back to Workouts {% endblock %}