{% extends "base.html" %} {% block title %}{{ workout.name }}{% endblock %} {% block content %}
Date: {{ workout.date }} | Status: {{ workout.status }}
{% 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 %}