]> Raphaƫl G. Git Repositories - airbundle/blob - Resources/views/form/_application.html.twig
Add recover and login form fragments
[airbundle] / Resources / views / form / _application.html.twig
1 {{ form_start(application) }}
2 <section>
3 {% if application.user is defined %}
4 {{ form_row(application.user) }}
5 {% endif %}
6
7 {{ form_row(application.location) }}
8
9 {{ form_row(application.date) }}
10
11 {{ form_row(application.slot) }}
12 </section>
13
14 {{ form_row(application.submit) }}
15
16 {# Render CSRF token etc .#}
17 <footer style="display:none">
18 {{ form_rest(application) }}
19 </footer>
20 {{ form_end(application) }}