{% extends 'base.html' %} {% block content %}

{{ person['PersonName'] }}

List of workouts
{% if person['Workouts']|length > 0 %} {% for e in person['Exercises'] %} {% endfor %} {% for w in person['Workouts'] %} {% for e in person['Exercises'] %} {% endfor %} {% endfor %}
Date {{ e['ExerciseName'] }}
{{ w['StartDate'] }} {% 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 %} Edit
{% endif %} {% if person['Workouts']|length == 0 %} {% endif %}
{% endblock %}