{% extends "lifting/base.html" %} {% load lifting %} {% block content %}

{{plan}}

{% for day in plan.days.all %}

{{day.name}}

{% for e in day.exercises.all %} {% endfor %}
ExerciseSetsPercent
{{e.exercise}} {{e.get_set_display}} {{e.get_percent_display}}
{% endfor %}
{% endblock %} {% block script %} {% endblock %}