diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-10-18 09:40:46 +0200 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-10-18 09:40:46 +0200 |
| commit | e1d7bc9e679c8778c22f99d24ffc339791429c71 (patch) | |
| tree | ca8ac863e065b650306eb8a85f4fa0b492b260a9 /templates/controls.j2 | |
| parent | 72fd5ecb031badb80db0c2bb8382d7490fc9dffe (diff) | |
Cleaned up the layout slightly
Diffstat (limited to 'templates/controls.j2')
| -rw-r--r-- | templates/controls.j2 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/templates/controls.j2 b/templates/controls.j2 index 7a03f9a..0b1451a 100644 --- a/templates/controls.j2 +++ b/templates/controls.j2 @@ -1,4 +1,11 @@ {% from "macros.j2" import court %} +<div class="fixed-grid has-12-cols"> +<div class="grid"> +{% for key, value in courts.items() %} + {{ court(key, value) }} +{% endfor %} +</div> +</div> <div class="columns"> <div class="column"> <div class="field has-addons"> @@ -48,11 +55,4 @@ hx-post="/clear" hx-target="#games">Reset</button> </div> -</div> -<div class="fixed-grid has-12-cols"> -<div class="grid"> -{% for key, value in courts.items() %} - {{ court(key, value) }} -{% endfor %} -</div> </div>
\ No newline at end of file |
