summaryrefslogtreecommitdiff
path: root/app/templates
diff options
context:
space:
mode:
authorstilbruch <stilbruch@protonmail.com>2022-04-23 13:24:57 -0500
committerstilbruch <stilbruch@protonmail.com>2022-04-23 13:24:57 -0500
commit5d08424481a8a6ae1b69c96a6ee43394d9aa8963 (patch)
tree3ae6a11a0a5133e32ad76c0c45ee27711358d216 /app/templates
parent7ab43e8d4f35f1da6a8778c603eba47ce315bc88 (diff)
downloadStrengthy-5d08424481a8a6ae1b69c96a6ee43394d9aa8963.tar.xz
Strengthy-5d08424481a8a6ae1b69c96a6ee43394d9aa8963.zip
Start workout record page
Diffstat (limited to 'app/templates')
-rw-r--r--app/templates/workout/record.html45
1 files changed, 41 insertions, 4 deletions
diff --git a/app/templates/workout/record.html b/app/templates/workout/record.html
index bc6b695..6463fe4 100644
--- a/app/templates/workout/record.html
+++ b/app/templates/workout/record.html
@@ -1,12 +1,49 @@
{% extends 'base/layout.html' %}
{% block content %}
-
-<div class="continer">
+<div class="container">
<div class="columns is-centered">
<div class="column">
- <!--- TODO --->
- <div>
+ <h1 class="title is-2">Record {{ workout.name }}</h1>
+ <div class="box">
+ {% for exercise in workout.exercises %}
+ <h1 class="subtitle has-text-black">{{ exercise.name }}</h1>
+ <div class="field is-horizontal">
+ <div class="field-body">
+ <div class="field">
+ <label class="label">lbs</label>
+ <div class="control">
+ <input class="input" type="number" min="0">
+ </div>
+ </div>
+ <div class="field">
+ <label class="label">Reps</label>
+ <div class="control">
+ <input class="input" type="number" min="0">
+ </div>
+ </div>
+
+ <!-- Done button -->
+ <p class="button">
+ <span class="icon is-small">
+ <i class="fa fa-check"></i>
+ </span>
+ </p>
+ </div>
+ </div>
+
+ <div class="buttons is-centered">
+ <button class="button is-primary">
+ <span class="icon is-small">
+ <i class="fa fa-plus"></i>
+ </span>
+ <span>Add Set</span>
+ </button>
+ <button class="button is-danger">Skip</button>
+ </div>
+ {% endfor %}
+ </div>
+ </div>
</div>
</div>