FestinHegre/templates/reservations/edit.html.twig

14 lines
351 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Edit Reservations{% endblock %}
{% block body %}
<h1>Edit Reservations</h1>
{{ include('reservations/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_reservations_index') }}">back to list</a>
{{ include('reservations/_delete_form.html.twig') }}
{% endblock %}