{% extends 'base.html.twig' %} {% block title %}Location{% endblock %} {% block body %}

Location: {{ location.streetname }}

{# Buttons on top for easier access #} {# Return-Button #} Go back {# Edit-Button #} Edit {# Delete-Button #} {{ include('location/_delete_form.html.twig') }} {# Shown as Table for easier readability #}
Streetname {{ location.streetname }}
Housenumber {{ location.housenumber }}
Zipcode {{ location.zipcode }}
Cityname {{ location.cityname }}
Capacity {{ location.capacity }}
{% endblock %}