From 6777b45ef258c7553362ca17e8002cb7bf7cd40e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexa=20Valentov=C3=A1?= <git@imaniti.org> Date: Mon, 14 Apr 2025 17:09:22 +0200 Subject: [PATCH] Move selector --- .../make_a_wish/make_a_wish_root.html | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/make_a_wish/templates/make_a_wish/make_a_wish_root.html b/make_a_wish/templates/make_a_wish/make_a_wish_root.html index b562ff529..795cb8566 100644 --- a/make_a_wish/templates/make_a_wish/make_a_wish_root.html +++ b/make_a_wish/templates/make_a_wish/make_a_wish_root.html @@ -55,20 +55,6 @@ required ></textarea> - <div class="w-full pt-5"> - <select - class="bg-grey-150 font-alt p-3 text-3xl flex-1 w-full" - placeholder="Kraj" - name="kraj" - id="id_kraj" - required - > - {% for option in form.kraj.field.choices %} - <option value="{{ option.0 }}">{{ option.1 }}</option> - {% endfor %} - </select> - </div> - <div class="flex xl:gap-6 gap-4 justify-center mt-4 xl:flex-row flex-col"> <input type="text" @@ -89,6 +75,20 @@ > </div> + <div class="w-full mt-4"> + <select + class="bg-grey-150 font-alt p-3 text-3xl flex-1 w-full" + placeholder="Kraj" + name="kraj" + id="id_kraj" + required + > + {% for option in form.kraj.field.choices %} + <option value="{{ option.0 }}">{{ option.1 }}</option> + {% endfor %} + </select> + </div> + <div class="mt-4"> <input type="checkbox" name="accepts_gdpr" id="accepts_gdpr" required=""> <label for="accepts_gdpr" class="text-lg"> -- GitLab