From cc4e77439ecb66d517ea98dad6788d9f0e5aea11 Mon Sep 17 00:00:00 2001 From: Jan-Marlon Leibl Date: Thu, 23 Jan 2025 20:04:53 +0100 Subject: [PATCH] feat(ticket): add ticket purchase form to ticket page --- templates/home/index.html.twig | 2 +- templates/ticket/index.html.twig | 66 +++++++++++++++++++++++++++++++- 2 files changed, 66 insertions(+), 2 deletions(-) diff --git a/templates/home/index.html.twig b/templates/home/index.html.twig index ba6c817..1de0647 100644 --- a/templates/home/index.html.twig +++ b/templates/home/index.html.twig @@ -26,7 +26,7 @@
- + Tickets kaufen
diff --git a/templates/ticket/index.html.twig b/templates/ticket/index.html.twig index 929e353..61b29f2 100644 --- a/templates/ticket/index.html.twig +++ b/templates/ticket/index.html.twig @@ -1,6 +1,70 @@ {% extends 'base.html.twig' %} -{% block title %}Bestellen{% endblock %} +{% block title %}Tickets kaufen{% endblock %} {% block body %} +
+
+ +
+ +
+
+

+ Tickets kaufen +

+ +
+ {{ form_start(form, { 'attr': { 'class': 'space-y-6' } }) }} +
+
+ + +
+ +
+ + +
+
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+ {{ form_end(form) }} +
+
+
+
{% endblock %}