blob: 009deb09c9a8a368919aeec54924151de2e397b4 (
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
|
{% extends 'base/layout.html' %}
{% block title %}Workout{% endblock %}
{% block content %}
<div class="container">
<div class="columns is-centered">
<div class="column">
<h1 class="title is-2">Workout</h1>
<div class="box">
<table class="table is-fullwidth is-hoverable">
<thead>
<th>Set</th>
<th>lbs</th>
<th>Reps</th>
<th>Done</th>
</thead>
<tbody>
{% for set in record.sets %}
<tr>
<th></th>
<th>{{ set.lbs }}</th>
<th>{{ set.reps }}</th>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
{% endblock %}
|