McDoPlus/templates/resa_service/edit.html.twig
2023-11-29 14:58:03 +01:00

17 lines
404 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Edit Resa{% endblock %}
{% block body %}
<div class="center">
<h1>Edit Resa</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 %}