McDoPlus/templates/resa_service/new.html.twig
2023-11-29 14:58:03 +01:00

15 lines
319 B
Twig

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