{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load wger_extras %} {% block title %}{% trans "Weight log for workout" %}{% endblock %} {% block header %}{% endblock %} {% block scripts %} {% endblock %} {% block content %} {% if workout.comment %}

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

{% endif %} {% for day in workout.canonical_representation.day_list %} {% for set in day.set_list %} {% for exercise in set.exercise_list %} {% with day_list=workout_log|get_item:day.obj.id %} {% with exercise_list=day_list|get_item:exercise.obj.id %} {% if exercise_list.log_by_date %} {% with list=exercise_list.log_by_date %} {% render_weight_log list exercise_list.div_uuid %} {% endwith %} {% else %}

{% trans "No weight entries here." %}

{% endif %} {% endwith %} {% endwith %} {% empty%}

{% trans "No exercises for this day." %}

{% endfor %} {% endfor %} {% endfor %} {% endblock %} {% block sidebar %}

{% trans "Options" %}

{% trans 'Back to workout' %} {% trans "Back to workout" %}

{% trans "Notes" %}

{% blocktrans %}This page shows the weight logs belonging to this workout only. Click on an exercise to see all the historical data for it.{% endblocktrans %}

{% blocktrans %}Click on a value on a chart to edit the log entry.{% endblocktrans %}

{% blocktrans %}If on a single day there is more than one entry with the same number of repetitions, but different weights, only the entry with the higher weight is shown in the diagram.{% endblocktrans %}

{% endblock %}