From 762af9caeff4c598ebc3a1304104507cc3be7d41 Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Sat, 11 Mar 2023 17:21:56 +1100 Subject: [PATCH] Move add user form from navbar to under user list and add icon to navbar --- templates/users.html | 37 +++++++++++++++++++++++++++---- templates/users_and_workouts.html | 24 +++++++++++--------- 2 files changed, 46 insertions(+), 15 deletions(-) diff --git a/templates/users.html b/templates/users.html index db8d768..9cd055a 100644 --- a/templates/users.html +++ b/templates/users.html @@ -8,15 +8,30 @@ {% for u in users %} - {{ - u.name }} + + +
+ + + + + +
+ {{ u.name }} +
+
+
+
{{ u.workouts_count }}
+ class="pr-2"> {% endfor %} - \ No newline at end of file + + +
+
+ + + +
+ \ No newline at end of file diff --git a/templates/users_and_workouts.html b/templates/users_and_workouts.html index a4dd444..3f4b6f7 100644 --- a/templates/users_and_workouts.html +++ b/templates/users_and_workouts.html @@ -14,19 +14,21 @@