{% extends 'base.html' %} {% block content %}
Live training log

{{ routine.name }}

Fill in today's completed reps and weight for each set. Leave any unfinished exercise blank and it will be skipped.

{% if routine.notes %}

{{ routine.notes }}

{% endif %}
Shoulder day

Loaded exercises

Structured entry

Log this session

{% for exercise in routine_sheet %}
{{ exercise.target_sets }} sets

Target reps: {{ exercise.target_reps or 'enter manually' }}

{% for set in exercise.sets %}
Set {{ set.index + 1 }}
{% endfor %}
{% endfor %}
{% endblock %}