summaryrefslogtreecommitdiff
path: root/app/templates/workout/history.html
blob: de199a10abf0ef3b186ce1a9dbcb7d9c74b82293 (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
{% 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>
					</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 %}