{% extends "base.html" %} {% load i18n %} {% load static %} {% load wger_extras %} {# #} {# Opengraph #} {# #} {% block opengraph %} {{ block.super }} {% endblock %} {# #} {# Title #} {# #} {% block title %}{% translate "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 %}
{% 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 muscles.front muscles.frontsecondary %}
{% render_muscles muscles.back muscles.backsecondary %}
{% if workout.canonical_representation.day_list %}

{% translate "Logs" %}

{% translate 'View logs' %}

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