X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/434496435610caa3e1f9db4354d8c90b7cf0275f..e8fa31defa98e99d9f6f2de198e14bededca49dc:/Resources/views/default/index.html.twig?ds=sidebyside diff --git a/Resources/views/default/index.html.twig b/Resources/views/default/index.html.twig index 20e2b0f..89719d9 100644 --- a/Resources/views/default/index.html.twig +++ b/Resources/views/default/index.html.twig @@ -1,7 +1,40 @@ {% 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 %} + + {{ day.title }} + {% if day.sessions is not empty %} + + {% for session in day.sessions %} + + {{ session.title }} + + {% endfor %} + + {% else %} + + {% endif %} + + {% endfor %} + + {% endif %} + {{ include('@RapsysAir/form/_toolbox.html.twig') }} + + {% if locations is defined and locations %} + + + {% for id, title in locations %} + + {{ title }} + + {% endfor %} + + + {% endif %} + {% endblock %}
{{ 'Welcome to the outdoor space reservation system'|trans }}