From ceb76e7b1d75623b09a9c85a3e48752404a9077d Mon Sep 17 00:00:00 2001 From: stilbruch Date: Sat, 23 Apr 2022 17:08:53 -0500 Subject: Work on exercise type support for create workout --- app/forms/workout.py | 1 + 1 file changed, 1 insertion(+) (limited to 'app/forms/workout.py') diff --git a/app/forms/workout.py b/app/forms/workout.py index ecc72c8..a84eb6a 100644 --- a/app/forms/workout.py +++ b/app/forms/workout.py @@ -7,6 +7,7 @@ class ExerciseCreateForm(Form): name = StringField("name", [DataRequired()]) sets = IntegerField("sets", [DataRequired()]) units = IntegerField("units", [DataRequired()]) + type = StringField("type", [DataRequired()]) # TODO: make sure its time or reps class SetForm(Form): lbs = IntegerField("lbs", [DataRequired()]) -- cgit v1.2.3