]> Raphaƫl G. Git Repositories - airbundle/blob - Resources/views/location/add.html.twig
Reuse current request uri
[airbundle] / Resources / views / location / add.html.twig
1 {% extends '@RapsysAir/body.html.twig' %}
2 {% block content %}
3 <section id="form">
4 <h2>{{ section }}</h2>
5 {{ form_start(form) }}
6 <div>
7 {{ form_row(form.title) }}
8
9 {{ form_row(form.short) }}
10
11 {{ form_row(form.address) }}
12
13 {{ form_row(form.zipcode) }}
14
15 {{ form_row(form.city) }}
16
17 {{ form_row(form.latitude) }}
18
19 {{ form_row(form.longitude) }}
20
21 {{ form_row(form.hotspot) }}
22
23 {{ form_row(form.submit) }}
24 </div>
25
26 {# render csrf token etc .#}
27 <footer style="display:none">{{ form_rest(form) }}</footer>
28 {{ form_end(form) }}
29 </section>
30 {% endblock %}