From 040a3a894e0816596532d7f7430baa4a5524f67b Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Fri, 25 Jul 2025 14:17:07 +0200 Subject: Added the grid layout using custom css --- app/templates/controls.j2 | 2 +- app/templates/players.j2 | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'app/templates') diff --git a/app/templates/controls.j2 b/app/templates/controls.j2 index 0acf5a6..f67f745 100644 --- a/app/templates/controls.j2 +++ b/app/templates/controls.j2 @@ -1,6 +1,6 @@ {% from "macros.j2" import court_button %}
-
+
{% for court in courts %} {{ court_button(court) }} {% endfor %} diff --git a/app/templates/players.j2 b/app/templates/players.j2 index 16e3878..0499b73 100644 --- a/app/templates/players.j2 +++ b/app/templates/players.j2 @@ -6,15 +6,13 @@
{{ navbar(url_for) }}

Members

-
-
+
{% for regular in regulars %}
{{ player_button(regular) }}
{% endfor %}

Guests

-
-
+
{% for guest in guests %}
{{ player_button(guest) }}
{% endfor %} -- cgit v1.3.1