From 5f93554d5f8c7e2b777150fa941531b29ded4378 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Mon, 19 Oct 2020 09:55:23 +0200 Subject: [PATCH] Add granted session display --- Resources/views/default/index.html.twig | 51 +++++++++++++++++++++++-- 1 file changed, 48 insertions(+), 3 deletions(-) diff --git a/Resources/views/default/index.html.twig b/Resources/views/default/index.html.twig index 20e2b0f..cd62920 100644 --- a/Resources/views/default/index.html.twig +++ b/Resources/views/default/index.html.twig @@ -1,7 +1,52 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} -
-

{{ section }}

-

{{ 'Welcome to the outdoor space reservation system'|trans }}

+
+

{{ section }}

+
+ {% if calendar is defined and calendar %} + + + + {% for date, day in calendar %} + + {% if loop.index % 7 == 0 and not loop.last %} + + + {% endif %} + {% endfor %} + + +
+

{{ day.title }}

+ {% if day.sessions is not empty %} + + {% endif %} +
+ {% endif %} + {{ include('@RapsysAir/form/_toolbox.html.twig') }}
+
+ {% if locations is defined and locations %} + + + + {% for id, title in locations %} + + {% if loop.index % 7 == 0 and not loop.last %} + + + {% endif %} + {% endfor %} + + +
{{ title }}
+ {% endif %} +
+
{% endblock %} -- 2.41.0