Compare commits

..

9 Commits

Author SHA1 Message Date
36fb3067a6
wip 2025-02-13 21:00:33 +01:00
84279cef75
wip 2025-02-13 20:58:16 +01:00
70e4cca194
revert 2025-02-13 18:26:13 +01:00
077153611f
revert 2025-02-13 18:25:31 +01:00
df540b1d98
add to address 2025-02-13 17:01:52 +01:00
373defb0f0
add ticket qr code 2025-02-13 16:59:54 +01:00
7f540e8bb5
wip 2025-02-13 16:44:25 +01:00
6abc15ef77
add some stuff 2025-02-13 16:44:23 +01:00
def4b27bcd
add success email 2025-02-13 16:43:35 +01:00
2 changed files with 11 additions and 8 deletions

View File

@ -1,7 +1,6 @@
<div class="bg-white/80 backdrop-blur-sm rounded-2xl border border-gray-100 p-5 hover:shadow-lg transition-all duration-300 group">
<div class="grid grid-cols-1 md:grid-cols-12 gap-3 md:gap-5">
<div class="md:col-span-3">
<div class="mb-1.5 text-gray-600 font-medium text-sm">Ticket-Typ</div>
<div class="grid grid-cols-12 gap-5">
<div class="relative col-span-3">
<div class="relative group">
<twig:ux:icon name="mingcute:ticket-fill" class="absolute left-3.5 top-1/2 -translate-y-1/2 w-5 h-5 text-orange-400 pointer-events-none transition-colors group-hover:text-orange-500" />
<select name="ticket"
@ -20,8 +19,7 @@
</div>
</div>
<div class="md:col-span-3">
<div class="mb-1.5 text-gray-600 font-medium text-sm">Ernährung</div>
<div class="relative col-span-3">
<div class="relative group">
<twig:ux:icon name="mdi:food" class="absolute left-3.5 top-1/2 -translate-y-1/2 w-5 h-5 text-orange-400 pointer-events-none transition-colors group-hover:text-orange-500" />
<select name="food"
@ -39,8 +37,7 @@
</div>
</div>
<div class="md:col-span-5">
<div class="mb-1.5 text-gray-600 font-medium text-sm">Anmerkungen</div>
<div class="relative col-span-5">
<div class="relative group">
<twig:ux:icon name="mdi:note" class="absolute left-3.5 top-1/2 -translate-y-1/2 w-5 h-5 text-orange-400 pointer-events-none transition-colors group-hover:text-orange-500" />
<input type="text"
@ -51,7 +48,7 @@
</div>
</div>
<div class="flex justify-end md:justify-center items-end md:col-span-1">
<div class="flex justify-center items-end col-span-1 pb-1">
<button data-action="form#removeEntry"
type="button"
class="group/btn p-3 hover:bg-red-50 rounded-xl transition-all duration-300 focus:outline-none focus:ring-2 focus:ring-red-200"

View File

@ -60,6 +60,12 @@
<span>Tickets</span>
</h2>
<div class="ml-5 grid grid-cols-4 gap-4 mb-4 px-4 text-sm font-medium text-gray-600">
<div>Ticket</div>
<div>Ernährung</div>
<div>Anmerkungen</div>
</div>
<div class="forms space-y-4">
{% include 'ticket/_partials/_form.html.twig' %}
</div>