{% extends "base.html" %} {% load i18n %} {% load static %} {% load wger_extras %} {# #} {# Opengraph #} {# #} {% block opengraph %} {{ block.super }} {% endblock %} {# #} {# Title #} {# #} {% block title %}{% translate "Workout" %}{% endblock %} {# #} {# Header #} {# #} {% block header %} {% endblock %} {# #} {# Content #} {# #} {% block content %} {% if workout.name %}

{{workout.name }}

{% endif %} {% if workout.description %}

{{ workout.description }}

{% endif %} {% for day in workout.day_set.all %}
{% render_day day is_owner %}
{% endfor %} {% if is_owner %}

{% translate "Add training day" %}

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

{% translate "Steps" %}

  1. {% translate "Add training days" %}
  2. {% translate "Add workout sets to days" %}
  3. {% translate "Set the repetitions for each set" %}

{% translate "Muscles trained" %}

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

{% render_muscles workout.canonical_representation.muscles.front workout.canonical_representation.muscles.front_secondary %}
{% render_muscles workout.canonical_representation.muscles.back workout.canonical_representation.muscles.back_secondary %}
{% if workout.canonical_representation.day_list %}

{% translate "Logs" %}

{% translate 'View logs' %}

{% endif %} {% endblock %} {# #} {# Options #} {# #} {% block options %}
{% endblock %}