]> Raphaël G. Git Repositories - airbundle/commitdiff
Update form name
authorRaphaël Gertz <git@rapsys.eu>
Wed, 24 Feb 2021 00:42:35 +0000 (01:42 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Wed, 24 Feb 2021 00:42:35 +0000 (01:42 +0100)
Resources/views/form/_application.html.twig

index 127ca8cbc237734b78f774dee21c453a4d0ac2ee..c36ba3c1a6106860b5dcba3fcbec1cb4e6486af8 100644 (file)
@@ -1,21 +1,21 @@
 <section>
        <h2>{% trans %}Application{% endtrans %}</h2>
 <section>
        <h2>{% trans %}Application{% endtrans %}</h2>
-       {{ form_start(application) }}
+       {{ form_start(forms.application) }}
                <div>
                <div>
-                       {% if application.user is defined %}
-                               {{ form_row(application.user) }}
+                       {% if forms.application.user is defined %}
+                               {{ form_row(forms.application.user) }}
                        {% endif %}
 
                        {% endif %}
 
-                       {{ form_row(application.location) }}
+                       {{ form_row(forms.application.location) }}
 
 
-                       {{ form_row(application.date) }}
+                       {{ form_row(forms.application.date) }}
 
 
-                       {{ form_row(application.slot) }}
+                       {{ form_row(forms.application.slot) }}
 
 
-                       {{ form_row(application.submit) }}
+                       {{ form_row(forms.application.submit) }}
                </div>
 
                {# render csrf token etc .#}
                </div>
 
                {# render csrf token etc .#}
-               <footer style="display:none">{{ form_rest(application) }}</footer>
-       {{ form_end(application) }}
+               <footer style="display:none">{{ form_rest(forms.application) }}</footer>
+       {{ form_end(forms.application) }}
 </section>
 </section>