HegreEtConfort/templates/intervention/edit.html.twig

14 lines
351 B
Twig
Raw Normal View History

2024-12-20 10:07:22 +01:00
{% extends 'base.html.twig' %}
{% block title %}Edit Intervention{% endblock %}
{% block body %}
<h1>Edit Intervention</h1>
{{ include('intervention/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_intervention_index') }}">back to list</a>
{{ include('intervention/_delete_form.html.twig') }}
{% endblock %}