- {% 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 %}
+ {% if person['Workouts']|length > 0 %}
+
+
+
+ |
+ Date
+ |
+ {% for e in exercise_list %}
+
+ {{ e['ExerciseName'] }}
+ |
+ {% endfor %}
+
+ |
+
+
+
-
-
- Edit
-
+ {% for w in person['Workouts'] %}
+ |
+ |
+ {{ w['StartDate'] }}
+ |
-
-
-
+ {% 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 %}
-
-
- {% endif %}
+
+
+ Edit
+
- {% if person['Workouts']|length == 0 %}
-
- No workouts found.
-
- {% endif %}
+
+ |
+