{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load manager_extras %} {% block title %}{% trans "Workout" %} – {{ workout.creation_date }}{% endblock %} {% block header %} {% endblock %} {% block content %} {% if workout.comment %}

{% trans "Goal" %}: {{workout.comment}}

{% endif %} {% for day in workout.day_set.select_related %}
{% render_day day %}
{% empty %}
{% trans "No days for this workout." %} {% trans "Add training day." %}
{% endfor %}

{% trans "Add training day" %} | {% trans "Show/Hide exercise comments" %}

{% endblock %} {% block sidebar %}

{% trans "Steps" %}

  1. {% trans "Add training days" %}
  2. {% trans "Add working sets to days" %}
  3. {% trans "Set the repetitions for each set" %} ({% trans "use '99' for 'all repetitions you can do'" %})

{% trans "Muscles trained" %}

{% trans "Images show combined muscles as trained by the exercises on the workout." %}

{% trans "Options" %}

{% trans 'Download as PDF' %} {% trans "Download as PDF" %}

{% trans 'Edit workout' %} {% trans "Edit workout" %}

{% trans 'View weight log' %} {% trans "View weight log" %}

{% trans 'Make a copy of this workout' %} {% trans "Make a copy of this workout" %}

{% trans 'Delete this workout' %} {% trans "Delete this workout" %}

{% endblock %}