McDoPlus/templates/avis/new.html.twig
2023-11-27 15:52:51 +01:00

15 lines
303 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Avis{% endblock %}
{% block body %}
<div class="center">
<h1>Create new Avis</h1>
<article>
{{ include('avis/_form.html.twig') }}
<a href="{{ path('app_avis_index') }}">back to list</a>
</article>
</div>
{% endblock %}