From 11ca7472f0736ed7f7cc4447f8fa59cd8765eb2f Mon Sep 17 00:00:00 2001 From: stilbruch Date: Sat, 30 Apr 2022 12:56:15 -0500 Subject: Start workout history page --- app/templates/workout/history.html | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 app/templates/workout/history.html (limited to 'app/templates/workout') 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 %} +
+
+
+

Workout

+
+ + + + + + + + + {% for set in record.sets %} + + + + + + {% endfor %} + +
SetlbsRepsDone
{{ set.lbs }}{{ set.reps }}
+
+
+
+
+{% endblock %} -- cgit v1.2.3