From 5c92823b14185694c32d0be390b6b3a8c3510e2c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 24 Feb 2021 01:39:46 +0100 Subject: [PATCH] Switch to new header system Switch to article container Use common location template Improve each event display --- Resources/views/location/view.html.twig | 50 ++++++++++++------------- 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/Resources/views/location/view.html.twig b/Resources/views/location/view.html.twig index 130d860..a3f28a7 100644 --- a/Resources/views/location/view.html.twig +++ b/Resources/views/location/view.html.twig @@ -1,27 +1,36 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} -
-

{{ section }}

-
+
+
+

{{ section }}

+

{{ description }}

+
+
{% if calendar is defined and calendar %} -
+
{% for date, day in calendar %} -
+

{{ day.title }}

{% if day.sessions is not empty %} - {% else %} -   {% endif %}
{% endfor %} @@ -29,17 +38,6 @@ {% endif %} {{ include('@RapsysAir/form/_toolbox.html.twig') }}
-
- {% if locations is defined and locations %} -
-

{% trans %}Locations{% endtrans %}

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

{{ title }}

-
- {% endfor %} -
-
- {% endif %} + + {{ include('@RapsysAir/default/_location.html.twig') }} {% endblock %} -- 2.41.0