{% if person['Workouts']|length > 0 %}
|
Date
|
{% for e in exercise_list %}
{{ e['ExerciseName'] }}
|
{% endfor %}
{% for w in person['Workouts'] %}
|
{{ strftime(w['StartDate'], "%b %d %Y") }}
|
{% for e in exercise_list %}
{% set topset_exercise =
get_first_element_from_list_with_matching_attribute(w['TopSets'],
'ExerciseId',
e['ExerciseId']) %}
{% if topset_exercise %}
{{ topset_exercise['Repetitions'] }} x {{ topset_exercise['Weight'] }}kg
{% endif %}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if person['Workouts']|length == 0 %}
No workouts found.
{% endif %}