HegreLand/templates/representation/edit.html.twig
ASTIER Yann ebc0a27382 Ongoing - RepresentationController.php
Ongoing - AffectationController.php
2024-12-06 07:57:39 +01:00

14 lines
357 B
Twig

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