{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load wger_extras %} {# #} {# Opengraph #} {# #} {% block opengraph %} {{ block.super }} {% endblock %} {# #} {# Title #} {# #} {% block title %}{% trans "Workout" %} – {{ workout.creation_date }}{% endblock %} {# #} {# Header #} {# #} {% block header %} {% endblock %} {# #} {# Content #} {# #} {% block content %} {% if workout.comment %}

{{workout.comment}}

{% endif %} {% for day in workout.canonical_representation.day_list %}
{% render_day day.obj is_owner %}
{% empty %}
{% trans "No days for this workout." %}
{% trans "Add training day." %}
{% endfor %}

{% if is_owner %} {% trans "Add training day" %} {% trans "Show/Hide exercise comments" %} {% endif %}

{% endblock %} {# #} {# Side bar #} {# #} {% block sidebar %}

{% trans "Steps" %}

  1. {% trans "Add training days" %}
  2. {% trans "Add workout 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 'View weight log' %} {% trans "View weight log" %} {% if is_owner %} {% trans 'Edit workout' %} {% trans "Edit workout" %} {% endif %} {% trans 'Export calendar file' %} {% trans "Export calendar file" %} {% if is_owner %} {% trans 'Make a copy of this workout' %} {% trans "Make a copy of this workout" %} {% trans 'Delete this workout' %} {% trans "Delete this workout" %} {% endif %} {% endblock %}