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

Quest bearbeiten: {{ quest.name }}

{{ quest.description }}

{{ form_start(form) }}

Items

Locations

{{ form_end(form) }}

Bestehende Steps

{% for stepNumber, stepData in groupedSteps %}

Items
{% if stepData.items is not empty %}
{% for item in stepData.items %}
{{ item.itemName }}
{{ item.quantity }} x

Koordinaten: X: {{ item.locationX }}, Y: {{ item.locationY }}, Z: {{ item.locationZ }}

{% endfor %}
{% else %}

Keine Items

{% endif %}
Locations
{% if stepData.locations is not empty %}
{% for location in stepData.locations %}
Location Koordinaten

Start: X: {{ location.locationX }}, Y: {{ location.locationY }}, Z: {{ location.locationZ }}

Ende: X: {{ location.locationX2 }}, Y: {{ location.locationY2 }}, Z: {{ location.locationZ2 }}

{% endfor %}
{% else %}

Keine Locations

{% endif %}
{% endfor %}
{% endblock %}