From 74e99bcadb413f8cb93d9ab8e57a7f2dd47d8447 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Tue, 4 Oct 2022 07:26:59 +0200 Subject: [PATCH] New location index layout --- Resources/views/location/index.html.twig | 86 ++++++++++++++---------- 1 file changed, 50 insertions(+), 36 deletions(-) diff --git a/Resources/views/location/index.html.twig b/Resources/views/location/index.html.twig index 817fa39..2a162f0 100644 --- a/Resources/views/location/index.html.twig +++ b/Resources/views/location/index.html.twig @@ -1,44 +1,58 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} -
+
-

{% trans %}Locations{% endtrans %}

-

{% trans %}Libre Air location list{% endtrans %}

+

{{ title }}

+

{{ description }}

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

{{ title }}

- {% if forms.locations is defined and forms.locations[id] is defined and forms.locations[id] %} - {{ form_start(forms.locations[id]) }} -
- {{ form_row(forms.locations[id].title) }} - - {{ form_row(forms.locations[id].short) }} - - {{ form_row(forms.locations[id].address) }} - - {{ form_row(forms.locations[id].zipcode) }} - - {{ form_row(forms.locations[id].city) }} - - {{ form_row(forms.locations[id].latitude) }} - - {{ form_row(forms.locations[id].longitude) }} - - {{ form_row(forms.locations[id].hotspot) }} - - {{ form_row(forms.locations[id].submit) }} -
- - {# render csrf token etc .#} -
{{ form_rest(forms.locations[id]) }}
- {{ form_end(forms.locations[id]) }} - {% endif %} -
- {% endfor %} -
+ {% if locations is defined and locations %} +
+ {% if multimap is defined and multimap %} + + {% endif %} + {% for id, location in locations %} +
+

{% if multimap is defined and multimap %}{{ id }} {% endif %}{{ location.title }}

+ {% if forms.locations is defined and forms.locations[id] is defined and forms.locations[id] %} + {{ form_start(forms.locations[id]) }} +
+ {{ form_row(forms.locations[id].title) }} + + {{ form_row(forms.locations[id].description) }} + + {{ form_row(forms.locations[id].address) }} + + {{ form_row(forms.locations[id].zipcode) }} + + {{ form_row(forms.locations[id].city) }} + + {{ form_row(forms.locations[id].latitude) }} + + {{ form_row(forms.locations[id].longitude) }} + + {{ form_row(forms.locations[id].indoor) }} + + {{ form_row(forms.locations[id].hotspot) }} + + {{ form_row(forms.locations[id].submit) }} +
+ + {# render csrf token etc .#} + + {{ form_end(forms.locations[id]) }} + {% endif %} +
+ {% endfor %} +
+ {% endif %} {{ include('@RapsysAir/form/_toolbox.html.twig') }}
-- 2.41.0