blob: e8f2bc55cdd76b357d9bec60651c1d02aa6f7941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{% extends 'base/layout.html' %}
{% block content %}
<div class="container">
<div class="columns is-centered">
<div class="column">
<h1 class="title is-2">{{ workout_record.workout.name }}</h1>
<h2 class="subtitle">{{ workout_record.finished_nice() }}</h2>
<div class="box">
{% for exercise in exercises %}
<a class="button is-link is-pulled-right" href="/progress/exercise/{{ exercise.id }}">View Progress</a>
<h1 class="title is-4 has-text-black">{{ exercise.name }}</h1>
<table class="table is-fullwidth is-hoverable">
<thead>
<th>Set</th>
<th>lbs</th>
<th>Reps</th>
<th>1RM</th>
</thead>
<tbody>
{% for set in exercise.sets %}
<tr>
<th>{{ loop.index0 + 1 }}</th>
<th>{{ set.lbs }}</th>
<th>{{ set.reps }}</th>
<th>{{ set.one_rep_max() }}</th>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}
</div>
</div>
</div>
</div>
{% endblock %}
|