{% extends 'base.html.twig' %} {% block content %}

Item zu Step {{ step.step }} hinzufügen

{{ form_start(form, {'attr': {'class': 'needs-validation', 'novalidate': 'novalidate'}}) }}
{{ form_row(form.itemName, {'attr': {'class': 'form-control'}}) }}
{{ form_row(form.quantity, {'attr': {'class': 'form-control'}}) }}
{{ form_row(form.locationX, {'attr': {'class': 'form-control'}}) }}
{{ form_row(form.locationY, {'attr': {'class': 'form-control'}}) }}
{{ form_row(form.locationZ, {'attr': {'class': 'form-control'}}) }}
Abbrechen
{{ form_end(form) }}
{% endblock %}