HegreEtConfort/templates/vehicle/new.html.twig

12 lines
250 B
Twig
Raw Normal View History

2024-12-20 10:07:22 +01:00
{% extends 'base.html.twig' %}
{% block title %}New Vehicle{% endblock %}
{% block body %}
<h1>Create new Vehicle</h1>
{{ include('vehicle/_form.html.twig') }}
<a href="{{ path('app_vehicle_index') }}">back to list</a>
{% endblock %}