diff options
| author | stilbruch <stilbruch@protonmail.com> | 2022-04-23 15:48:45 -0500 |
|---|---|---|
| committer | stilbruch <stilbruch@protonmail.com> | 2022-04-23 15:48:45 -0500 |
| commit | 4f1e55112138a1f3b4be3bf23e3740ae3effac35 (patch) | |
| tree | 220a5426486e9b8df1e27c417799221c546a0f29 /app/routes | |
| parent | 3d0202b4faaef7ff0900bcfefca4c88907a2b6d4 (diff) | |
| download | Strengthy-4f1e55112138a1f3b4be3bf23e3740ae3effac35.tar.xz Strengthy-4f1e55112138a1f3b4be3bf23e3740ae3effac35.zip | |
Add javascript to add sets while recording workout
Diffstat (limited to 'app/routes')
| -rw-r--r-- | app/routes/workout.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/routes/workout.py b/app/routes/workout.py index db8ab48..8615156 100644 --- a/app/routes/workout.py +++ b/app/routes/workout.py @@ -69,7 +69,7 @@ def recordWorkout(): if not workout: return redirect(url_for('home')); - return render_template('workout/record.html', workout=workout) + return render_template('workout/record.html', workout=workout, form=None) @app.route("/workout/select", methods=['GET']) @login_required |
