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

14 lines
307 B
Twig

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