summaryrefslogtreecommitdiff
path: root/app/templates/workout
diff options
context:
space:
mode:
authorstilbruch <stilbruch@protonmail.com>2022-04-30 12:56:15 -0500
committerstilbruch <stilbruch@protonmail.com>2022-04-30 12:56:15 -0500
commit11ca7472f0736ed7f7cc4447f8fa59cd8765eb2f (patch)
tree0d8a360753d97077171d087fac131b5e50c6906b /app/templates/workout
parent509a7bd8955138b2ff864dd75059d397b3fbb31e (diff)
downloadStrengthy-11ca7472f0736ed7f7cc4447f8fa59cd8765eb2f.tar.xz
Strengthy-11ca7472f0736ed7f7cc4447f8fa59cd8765eb2f.zip
Start workout history page
Diffstat (limited to 'app/templates/workout')
-rw-r--r--app/templates/workout/history.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/app/templates/workout/history.html b/app/templates/workout/history.html
new file mode 100644
index 0000000..009deb0
--- /dev/null
+++ b/app/templates/workout/history.html
@@ -0,0 +1,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 %}