futtern/templates/menu_item/new.html.twig
lubiana 674adcba60
All checks were successful
/ ls (pull_request) Successful in 37s
/ ls (push) Successful in 39s
/ ls (release) Successful in 25s
#42: allow updates to menuitems
2024-08-15 18:22:46 +02:00

11 lines
256 B
Twig

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