{% extends "base.html" %} {% load i18n staticfiles wger_extras %} {% block title %}{{schedule.name}}{% endblock %} {% block header %} {% endblock %} {% block content %} {% for step in schedule.schedulestep_set.select_related %}
{% trans "Start date" %} | {{schedule.start_date}} |
---|---|
{% trans "Schedule active" %} | {% if schedule.is_active %} {% else %} {% endif %} |
{% trans "Is a loop" %} | {% if schedule.is_loop %} {% trans "This schedule is a loop and will go through the workouts above till you deactivate it" %} {% else %} {% endif %} |
{% trans "Start schedule" %} |
{{ workout.creation_date }}
{% trans "Weeks" %}: {{ step.duration }}
{% blocktrans %}Add as many workouts to the schedule as you want. You can edit the order by dragging and dropping them. It's also possible to add one workout more than once.{% endblocktrans %}
{% for step in schedule.schedulestep_set.select_related %} {% with step_dates=step.get_dates %}