{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load staticfiles %} {% block title %}{{schedule.name}}{% endblock %} {% block header %} {% endblock %} {% block content %}
{% for step in schedule.schedulestep_set.select_related %} {% empty %} {% endfor %} {% if schedule.is_loop %} {% endif %}
{% trans "Nr." %} {% trans "Actions" %} {% trans "Workout" %} {% trans "Weeks" %}
{{ forloop.counter }} {% trans 'Move me' %} {% trans 'Edit' %} {% trans 'Delete' %} {{ step.workout }} {% if active_workout == step %} {% trans "active" %} {% endif %} {{ step.duration }}
{% trans "No workouts found." %} {% trans "Add one now." %}
{% trans "This schedule is a loop and will go through the workouts above till you deactivate it" %}

{% trans 'Add workout' %} {% trans "Add workout" %}

{% endblock %} {% block sidebar %}

{% trans "Adding workouts" %}

{% blocktrans %}Add as many workouts to the schedule as you want. You can edit the order per drag-and-drop. It's also possible to add one workout more than once.{% endblocktrans %}

{% trans "Options" %}

{% trans 'Edit schedule' %} {% trans "Edit schedule" %}

{% trans 'Delete schedule' %} {% trans "Delete schedule" %}

{% endblock %}