From 55c5d49d657557bc08109d398ec8e095dcc40a8e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 24 Feb 2021 01:40:11 +0100 Subject: [PATCH] Switch to new header system Switch to article container Use common location template Improve each event display --- Resources/views/session/index.html.twig | 79 ++++++++++++------------- 1 file changed, 37 insertions(+), 42 deletions(-) diff --git a/Resources/views/session/index.html.twig b/Resources/views/session/index.html.twig index abfdc20..0ac7d6a 100644 --- a/Resources/views/session/index.html.twig +++ b/Resources/views/session/index.html.twig @@ -1,45 +1,40 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} -
-

{{ 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 }} - - {% if session.weather is defined and session.weather %}{{ session.weather }}{% endif %} - {{ session.slot }} - -
  • - {% endfor %} -
- {% else %} -   - {% endif %} -
- {% endfor %} -
- {% endif %} - {{ include('@RapsysAir/form/_toolbox.html.twig') }} -
- {% if locations is defined and locations %} -
-

{% trans %}Locations{% endtrans %}

-
- {% for id, title in locations %} -
-

{{ title }}

-
- {% endfor %} -
-
- {% endif %} -
+
+

{{ section }}

+
+ {% if calendar is defined and calendar %} + + {% endif %} + {{ include('@RapsysAir/form/_toolbox.html.twig') }} +
+
+ {{ include('@RapsysAir/default/_location.html.twig') }} {% endblock %} -- 2.41.0