Fixed error mapping for orderdetails edit page.

This commit is contained in:
Jan Böhmer 2019-08-30 16:47:21 +02:00
parent d47e482b3c
commit 6e34cc3633
5 changed files with 15 additions and 12 deletions

View file

@ -1,8 +1,8 @@
{% form_theme form with ['Parts/edit/edit_form_styles.html.twig', "bootstrap_4_layout.html.twig"] %}
<table class="table table-striped" id="orderdetails_table" data-prototype="{{ form_widget(form.orderDetails.vars.prototype)|e('html_attr') }}">
<table class="table table-striped" id="orderdetails_table" data-prototype="{{ form_widget(form.orderdetails.vars.prototype)|e('html_attr') }}">
<tbody>
{% for detail in form.orderDetails %}
{% for detail in form.orderdetails %}
{{ form_widget(detail) }}
{% endfor %}
</tbody>