{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load wger_extras %} {% load thumbnail %} {% block title %}{% trans "Exercises" %}{% endblock %} {% block content %}
{% for category in categories %}

{% trans category.name %}

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

{% trans "Search" %}


{% 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 %}