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

15 lines
318 B
Twig

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