{% for p in model['People'] %}
{{ p['PersonName'] }}
Current rep maxes
View workouts
{% if p['NumberOfWorkouts'] == 0 %}
No workouts completed.
{% endif %} {% for e in p['Exercises'] %}
{{ e['ExerciseName'] }}
{% if e['RepMaxes']|length > 1 %}
{% endif %}
Date
Rep Max
{% for rm in e['RepMaxes'] %}
{{ rm['StartDate'] }}
{{ rm['Repetitions'] }} x {{ rm['Weight'] }}kg
{% endfor %}
{% endfor %}
{% endfor %}
{{ render_partial('partials/stats.html', stats=model['Stats']) }}