]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Resources/views/form/_application.html.twig
New page title schema
[airbundle] / Resources / views / form / _application.html.twig
index b165790a2c54a07d4cf0dbad15ade17012536792..82fe510652c81d145350768561cccd72968affaa 100644 (file)
@@ -1,20 +1,23 @@
-{{ form_start(application) }}
-       <section>
-               {% if application.user is defined %}
-                       {{ form_row(application.user) }}
-               {% endif %}
+<section>
+       <h2>{% trans %}Application{% endtrans %}</h2>
+       {{ form_start(forms.application) }}
+               <div>
+                       {% if forms.application.user is defined %}
+                               {{ form_row(forms.application.user) }}
+                       {% endif %}
 
-               {{ form_row(application.location) }}
+                       {{ form_row(forms.application.dance) }}
 
-               {{ form_row(application.date) }}
+                       {{ form_row(forms.application.location) }}
 
-               {{ form_row(application.slot) }}
-       </section>
+                       {{ form_row(forms.application.date) }}
 
-       {{ form_row(application.submit) }}
+                       {{ form_row(forms.application.slot) }}
 
-       {# Render CSRF token etc .#}
-       <footer style="display:none">
-               {{ form_rest(application) }}
-       </footer>
-{{ form_end(application) }}
+                       {{ form_row(forms.application.submit) }}
+               </div>
+
+               {# render csrf token etc .#}
+               <footer style="display:none">{{ form_rest(forms.application) }}</footer>
+       {{ form_end(forms.application) }}
+</section>