McDoPlus/templates/resa_service/edit.html.twig
clemcle81500 6eb297c0f1 corrections fautes
corrections fautes
2023-12-05 13:40:54 +01:00

17 lines
420 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Edit Réservation{% endblock %}
{% block body %}
<div class="center">
<h1>Edit Réservation</h1>
<article>
{{ include('resa_service/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_resa_service_index') }}">back to list</a>
{{ include('resa_service/_delete_form.html.twig') }}
</article>
</div>
{% endblock %}