{% extends "base_list.html" %} {% load static %} {% block title %}{{object.name}}{% endblock %} {% block lists %}

{{object.name}}

{% if object.photo %} {{object.name}} {% endif %}
Level: {{object.level|default:"-"}}
Force: {{object.force|default:"-"}}
Equipment: {{object.equipment|default:"-"}}
Mechanic: {{object.mechanic|default:"-"}}

Primary muscles: {% for muscle in object.primary_muscles %}{{muscle}}{% endfor %}

Secondary muscles: {% for muscle in object.secondary_muscles %}{{muscle}}{% endfor %}

{% if object.instructions %}

Instructions

    {% for step in object.instructions %}
  1. {{step}}
  2. {% endfor %}
{% endif %}
{% endblock %}