diff options
| author | stilbruch <stilbruch@protonmail.com> | 2022-04-23 12:38:19 -0500 |
|---|---|---|
| committer | stilbruch <stilbruch@protonmail.com> | 2022-04-23 12:38:19 -0500 |
| commit | fcc687b97d0acb878d2167a2ef47939b8bc47598 (patch) | |
| tree | e761f53eb8aab16a6ec5cd53126ef6c08c167bea /app/templates/workout/select.html | |
| parent | c37125539b34a42ca2dc2fb220d3b114eb0f4c74 (diff) | |
| download | Strengthy-fcc687b97d0acb878d2167a2ef47939b8bc47598.tar.xz Strengthy-fcc687b97d0acb878d2167a2ef47939b8bc47598.zip | |
Add select page (it sucks)
Diffstat (limited to 'app/templates/workout/select.html')
| -rw-r--r-- | app/templates/workout/select.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/templates/workout/select.html b/app/templates/workout/select.html new file mode 100644 index 0000000..c01a4f8 --- /dev/null +++ b/app/templates/workout/select.html @@ -0,0 +1,23 @@ +{% extends 'base/layout.html' %} + +{% block content %} +<div class="continer"> + <div class="columns is-centered"> + {% for workout in current_user.workouts %} + <div class="column"> + <div class="card"> + <header class="card-header"> + <p class="card-header-title"> {{ workout.name }}</p> + </header> + <div class="card-content"> + <div class="content"> + <a class="button" href="/workout/record?id={{ workout.id }}">Start</a> + </div> + </div> + </div> + </div> + {% endfor %} + </div> +</div> + +{% endblock %} |
