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

{{ person_name }}

List of workouts
{{ render_partial('partials/tags.html',person_id=person_id, tags=tags) }}
{% for graph in exercise_progress_graphs %} {{ render_partial('partials/sparkline.html', **graph.progress_graph) }} {% endfor %}
{% if workouts|length > 0 %} {% for exercise in selected_exercises %} {% endfor %} {% for workout in workouts %} {% for exercise in selected_exercises %} {% endfor %} {% endfor %}
Date {{ exercise.name }}
{{ workout.start_date | strftime("%b %d %Y") }} {% for set in workout.exercises[exercise.id] %} {{ set.repetitions }} x {{ set.weight }}kg {% endfor %}
{% endif %} {% if workouts|length == 0 %} {% endif %}
{% endblock %} {% block stats %} {{ render_partial('partials/stats.html', stats=stats) }} {% endblock %} {% block add_workout_button %} {% endblock %}