From 7c9c647f0e22c42bcce8845f5d49808014d39d96 Mon Sep 17 00:00:00 2001 From: stilbruch Date: Sun, 24 Apr 2022 17:08:23 -0500 Subject: Reformat python files with black --- 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 0336e1c..292aaa8 100644 --- a/app/templates/workout/create.html +++ b/app/templates/workout/create.html @@ -7,7 +7,7 @@

- {{ form.name(class_='input', placeholder='Workout Name') }} + {{ form['name'](class_='input', placeholder='Workout Name') }} @@ -22,7 +22,7 @@

- {{ entry.exercise_name(class_='input', placeholder='Name') }} + {{ entry['name'](class_='input', placeholder='Exercise') }} @@ -35,7 +35,7 @@

- {{ entry.sets(class_='input', placeholder='Sets') }} + {{ entry['sets'](class_='input', placeholder='Sets') }} @@ -44,13 +44,13 @@

- {{ entry.exercise_type() }} + {{ entry['type'] }}
- {{ entry.units(class_='input') }} + {{ entry['units'](class_='input') }}

-- cgit v1.2.3