15 lines
319 B
Twig
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 %}
|