From e31a78c3cc4b7691c67b8109d4984a3a857b9fda Mon Sep 17 00:00:00 2001 From: stilbruch Date: Mon, 9 May 2022 00:50:45 -0500 Subject: Fixed workout create bug --- app/templates/workout/create.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'app/templates') diff --git a/app/templates/workout/create.html b/app/templates/workout/create.html index 628ef74..569717a 100644 --- a/app/templates/workout/create.html +++ b/app/templates/workout/create.html @@ -24,9 +24,6 @@
{% for entry in form.exercises.entries %} - {% if workout %} - {{ entry['id']() }} - {% endif %}
@@ -53,13 +50,13 @@
- {{ entry['type'] }} + {{ entry['type'](oninput='handleChange(this)') }}
- {{ entry['units'](class_='input', placeholder="Reps") }} + {{ entry['units'](class_='input', placeholder='Reps') }}

@@ -68,6 +65,9 @@

+ {% if workout %} + {{ entry['id']() }} + {% endif %} {% endfor %}
-- cgit v1.2.3