{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Your schedules" %}{% endblock %} {% block header %} {% endblock %} {% block content %}
{% for schedule in schedules %} {% if schedule.is_active %} {% trans "active" %} {% endif %}

{{ schedule }}

{{ schedule.start_date }}

{% empty %} {% trans "No schedules found." %}
{% trans "Add one now." %}
{% endfor %}
{% endblock %} {% block sidebar %}

{% blocktrans %}Schedules are collections of workouts that you do in succession.{% endblocktrans %}

{% blocktrans %}You can indicate how long you want to do each workout before jumping to the next. It is also possible to create a loop, so you always do the same workouts in succession, e.g. A > B > C > A > B > C and so on.{% endblocktrans %}

{% blocktrans %}The currently active schedule will remain active (and be shown e.g. in your dashboard) till it reaches the last workout or till you deactivate it, if it is a loop.{% endblocktrans %}

{% endblock %} {% block options %} {% trans "Add schedule" %} {% endblock %}