X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/5d7fa54b439904cfb79ac1fe4b81ab7f53433874..c09bbd728928fedbcdad2bfa0a4520879619899d:/Resources/views/location/index.html.twig diff --git a/Resources/views/location/index.html.twig b/Resources/views/location/index.html.twig index 817fa39..e309920 100644 --- a/Resources/views/location/index.html.twig +++ b/Resources/views/location/index.html.twig @@ -1,44 +1,67 @@ {% extends '@RapsysAir/body.html.twig' %} {% block content %} -
+
-

{% trans %}Locations{% endtrans %}

-

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

+

{{ 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) }} + {% if locations is defined and locations %} + {% 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].short) }} + {{ form_row(forms.locations[id].description) }} - {{ form_row(forms.locations[id].address) }} + {{ form_row(forms.locations[id].address) }} - {{ form_row(forms.locations[id].zipcode) }} + {{ form_row(forms.locations[id].zipcode) }} - {{ form_row(forms.locations[id].city) }} + {{ form_row(forms.locations[id].city) }} - {{ form_row(forms.locations[id].latitude) }} + {{ form_row(forms.locations[id].latitude) }} - {{ form_row(forms.locations[id].longitude) }} + {{ form_row(forms.locations[id].longitude) }} - {{ form_row(forms.locations[id].hotspot) }} + {{ form_row(forms.locations[id].indoor) }} - {{ form_row(forms.locations[id].submit) }} -
+ {{ form_row(forms.locations[id].hotspot) }} - {# render csrf token etc .#} -
{{ form_rest(forms.locations[id]) }}
- {{ form_end(forms.locations[id]) }} - {% endif %} -
- {% endfor %} -
+ {{ 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') }}