X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/8a87bfd0ad180ec916476db52960bcacb31cc3ee..2de9e441eb89a3d4d8fa4384b2092c94519fcaea:/Resources/views/location/index.html.twig?ds=inline
diff --git a/Resources/views/location/index.html.twig b/Resources/views/location/index.html.twig
index ca51431..e309920 100644
--- a/Resources/views/location/index.html.twig
+++ b/Resources/views/location/index.html.twig
@@ -1,45 +1,68 @@
{% extends '@RapsysAir/body.html.twig' %}
{% block content %}
-
- {% trans %}Dashboard{% endtrans %}
-
- {% if calendar is defined and calendar %}
-
-
-
- {% for date, day in calendar %}
-
- {{ day.title }}
- {% if day.sessions is not empty %}
-
+
+
+
+ {% if locations is defined and locations %}
+ {% if multimap is defined and multimap %}
+
+ {% endif %}
+ {% if forms.locations is defined %}
+
+ {% for id, location in locations %}
+
+
+ {% 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_end(forms.locations[id]) }}
{% endif %}
- |
- {% if loop.index % 7 == 0 and not loop.last %}
-
-
- {% endif %}
+
{% endfor %}
-
-
-
- {% endif %}
- {# Display application or login form #}
- {% if is_granted('ROLE_GUEST') %}
-
- {{ include('@RapsysAir/form/_application.html.twig') }}
-
- {% elseif not is_granted('IS_AUTHENTICATED_REMEMBERED') %}
-
- {{ include('@RapsysAir/form/_login.html.twig') }}
-
- {% endif %}
-
- {# dump(calendar) #}
-
+
+ {% 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') }}
+
+
{% endblock %}