{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load staticfiles %} {% load manager_extras %} {% block header %} {% endblock %} {% block title %}{{ exercise.name }}{% endblock %} {% block content %} {% if exercise.status == exercise.EXERCISE_STATUS_PENDING %}
{% blocktrans %}This user submitted exercise is pending a decision to be included in the database.{% endblocktrans %} {% trans "Till then, it will not be shown in the overview or the search." %} {% if perms.exercises %}{% trans "Please select one of the options below." %}{% endif %}
{% if perms.exercises %} {% endif %} {# end check permissions #}{% trans "Category" %}: {{ exercise.category.name }}
{{ exercise.description|safe }}
{% with comments=exercise.exercisecomment_set.all %} {% if comments %}{% trans "The diagram shows the most used muscles on this exercise" %}
{% trans "Back to exercise overview" %}
{% blocktrans %}This exercise was submitted by {{username}}.{% endblocktrans %} {% endwith %}