{% extends "base_wide.html" %} {% load i18n staticfiles cache wger_extras %} {% block title %}{% trans "Muscle overview" %}{% endblock %} {% block header %} {% endblock %} {% block content %} {% cache cache_timeout muscle-overview language.id %} {% 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 %}
{% for muscle in muscle_list|first %} {% endfor %}
{% endcache %} {% 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 %}