Files
2025-01-09 09:31:51 +04:00

14 lines
311 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Edit Menu{% endblock %}
{% block body %}
<h1>Edit Menu</h1>
{{ include('menu/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_menu_index') }}">back to list</a>
{{ include('menu/_delete_form.html.twig') }}
{% endblock %}