{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load staticfiles %} {% load manager_extras %} {% block title %}{% trans "Weight log for workout" %}{% endblock %} {% block header %} {% endblock %} {% block content %} {% if workout.comment %}

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

{% endif %} {% for day, exercise_log in workout_log.items %}

{{ day.description }}

{% trans 'Add weight log to this day' %} {% trans 'Add weight log to this day' %}

{% for exercise, date_list in exercise_log.items %}
{{ exercise.name }}
{% if date_list.log_by_date %} {% with list=date_list.log_by_date %} {% render_weight_log list date_list.div_uuid %} {% endwith %} {% else %}

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

{% endif %} {% empty%}

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

{% 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 %}