Files
EXO_GDP/templates/restaurant/new.html.twig
2025-01-09 09:31:51 +04:00

12 lines
262 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Restaurant{% endblock %}
{% block body %}
<h1>Create new Restaurant</h1>
{{ include('restaurant/_form.html.twig') }}
<a href="{{ path('app_restaurant_index') }}">back to list</a>
{% endblock %}