{% extends "base_wide.html" %} {% load i18n %} {% load staticfiles %} {% load cache %} {% block title %}{% trans "Muscle overview" %}{% endblock %} {% block header %} {% endblock %} {% block scripts %} {% endblock %} {% block content %} {% trans "Hover with the mouse over the muscles to show corresponding exercises." %}

{% trans "Muscles" %}

{# Why do we need to use |first? #}
{% regroup muscle_list|first by is_front as muscle_group %} {% for group in muscle_group %}
{% if group.grouper %}

{% trans "Front side" %}

{% else %}

{% trans "Back side" %}

{% endif %}
{% endfor %}

{% trans "Exercises" %} -

{% for muscle in muscle_list|first %} {% endfor %} {% if perms.exercises %}

{% trans "Options" %}

{% trans 'Add muscle' %} {% trans 'Add muscle' %}

{% blocktrans %}Important: After adding a muscle, you need to create a new SVG image with the contours of the muscle and place it in the folder images/muscles.{% endblocktrans %}

{% endif %} {% endblock %} {% block sidebar %} {% endblock %}