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

{{workout.name }}

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

{{ workout.description }}

{% endif %} {% for day in workout.canonical_representation.day_list %}
{% render_day day.obj is_owner %}
{% endfor %} {% if is_owner %}
{% translate "Mark as workout" %}
{% endif %} {% endblock %} {# #} {# Side bar #} {# #} {% block sidebar %}

{% 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 %}
{% endblock %} {# #} {# Options #} {# #} {% block options %} {% translate "Use this template" %} {% endblock %}