{% extends 'base.html' %} {% block content %}
{% with person_id=None, tags=tags %} {% include 'partials/tags.html' %} {% endwith %}
{% if model['People']|length == 0 %} {% endif %}
{% for p in model['People'] %}

{{ p['PersonName'] }}

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