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

12 lines
234 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Ride{% endblock %}
{% block body %}
<h1>Create new Ride</h1>
{{ include('ride/_form.html.twig') }}
<a href="{{ path('ride_index') }}">back to list</a>
{% endblock %}