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

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

{{ form_start(form, {'attr': {'class': 'needs-validation', 'novalidate': 'novalidate'}}) }}
Start-Koordinaten
{{ form_row(form.locationX, {'attr': {'class': 'form-control'}}) }} {{ form_row(form.locationY, {'attr': {'class': 'form-control'}}) }} {{ form_row(form.locationZ, {'attr': {'class': 'form-control'}}) }}
End-Koordinaten
{{ form_row(form.locationX2, {'attr': {'class': 'form-control'}}) }} {{ form_row(form.locationY2, {'attr': {'class': 'form-control'}}) }} {{ form_row(form.locationZ2, {'attr': {'class': 'form-control'}}) }}
Abbrechen
{{ form_end(form) }}
{% endblock %}