{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load wger_extras %} {% load thumbnail %} {% load cache %} {% block title %}{% trans "Exercises" %}{% endblock %} {% block content %} {% cache cache_timeout equipment-overview-mobile language.id %}
{% for equipment in equipment_list %}

{% trans equipment.name %}

{% endfor %}
{% endcache %} {% endblock %} {% block sidebar %}

{% trans "Search" %}


{% cache cache_timeout exercise-overview-search language.id %} {% endcache %}

{% trans "Add new exercise" %}

{% if user.is_authenticated and not user.userprofile.is_temporary %} {% trans 'Add new exercise' %} {% trans "Add new exercise" %} {% else %} {% trans 'Add new exercise' %} {% trans "Only registered users can do this" %} {% endif %}

{% if perms.exercises %}

{% trans "Options" %}

{% if categories %}

{% with category=categories|first %} {% trans 'Edit category' %} {% trans "Edit category" %}: {{category.name}}

{% endwith %}

{% with category=categories|first %} {% trans 'Delete category' %} {% trans "Delete category" %}: {{category.name}} {% endwith %}

{% endif %}

{% trans 'Add category' %} {% trans "Add category" %}

{% endif %} {% endblock %}