{{ workout['PersonName'] }}

{{ render_partial('partials/start_date.html', person_id=workout['PersonId'], workout_id=workout['WorkoutId'], start_date=workout['StartDate']) }}
{% for t in workout['TopSets'] %} {{ render_partial('partials/topset.html', person_id=workout['PersonId'], workout_id=workout['WorkoutId'], topset_id=t['TopSetId'], exercise_name=t['ExerciseName'], repetitions=t['Repetitions'], weight=t['Weight']) }} {% endfor %}
Exercise Top Set
{% if workout['TopSets']|length == 0 %}
No topsets found.
{% endif %}