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/routes.py | |
| parent | c37125539b34a42ca2dc2fb220d3b114eb0f4c74 (diff) | |
| download | Strengthy-fcc687b97d0acb878d2167a2ef47939b8bc47598.tar.xz Strengthy-fcc687b97d0acb878d2167a2ef47939b8bc47598.zip | |
Add select page (it sucks)
Diffstat (limited to 'app/routes.py')
| -rw-r--r-- | app/routes.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/routes.py b/app/routes.py index 7ee3986..8f5d8c1 100644 --- a/app/routes.py +++ b/app/routes.py @@ -116,3 +116,8 @@ def editWorkout(): @login_required def recordWorkout(): return render_template('workout/record.html') + +@app.route("/workout/select", methods=['GET']) +@login_required +def selectWorkout(): + return render_template('workout/select.html') |
