From: Raphaƫl Gertz Date: Thu, 13 Oct 2022 13:16:47 +0000 (+0200) Subject: New header layout X-Git-Tag: 0.3.0~170 X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/96f24116db99c7358f321d7d5b77f5806a02c82e?ds=inline New header layout New layout --- diff --git a/Resources/views/location/index.html.twig b/Resources/views/location/index.html.twig index 2a162f0..3ad7613 100644 --- a/Resources/views/location/index.html.twig +++ b/Resources/views/location/index.html.twig @@ -2,56 +2,65 @@ {% block content %}
-

{{ title }}

-

{{ description }}

+

{{ description }}

{% 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_rest(forms.locations[id]) }}
- {{ form_end(forms.locations[id]) }} - {% endif %} -
- {% endfor %} -
+ {% if multimap is defined and multimap %} + + {% endif %} + {% if forms.locations is defined %} +
+ {% for id, location in locations %} +
+
+

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

+
+ {% if 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_rest(forms.locations[id]) }}
+ {{ form_end(forms.locations[id]) }} + {% endif %} +
+ {% endfor %} +
+ {% else %} +
    + {% for id, location in locations %} +
  • {% if multimap is defined and multimap %}{{ id }} {% endif %}{{ location.title }}
  • + {% endfor %} +
+ {% endif %} {% endif %} {{ include('@RapsysAir/form/_toolbox.html.twig') }}