{% extends 'intranet.html.twig' %} {% block page_title %}{{ 'picking_list.enter_pallets' | trans }}{% endblock %} {% block page_content %}
{{ form_start(form) }}
{% for pallet in form.pallets %}
Pallet #{{ loop.index }}

{{ form_label(pallet.width) }} {{ form_widget(pallet.width) }}
{{ form_label(pallet.length) }} {{ form_widget(pallet.length) }}
{{ form_label(pallet.height) }} {{ form_widget(pallet.height) }}
{{ form_label(pallet.weight) }} {{ form_widget(pallet.weight) }}
{% endfor %}
{{ form_rest(form) }} {{ form_end(form) }}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}