]> Raphaƫl G. Git Repositories - airbundle/blob - Resources/views/form/_application.html.twig
New css layout
[airbundle] / Resources / views / form / _application.html.twig
1 <section>
2 <h2>{% trans %}Application{% endtrans %}</h2>
3 {{ form_start(application) }}
4 <div>
5 {% if application.user is defined %}
6 {{ form_row(application.user) }}
7 {% endif %}
8
9 {{ form_row(application.location) }}
10
11 {{ form_row(application.date) }}
12
13 {{ form_row(application.slot) }}
14
15 {{ form_row(application.submit) }}
16 </div>
17
18 {# render csrf token etc .#}
19 <footer style="display:none">{{ form_rest(application) }}</footer>
20 {{ form_end(application) }}
21 </section>