futtern/templates/food_order/edit.html.twig
lubiana 1dc5306967
All checks were successful
/ ls (pull_request) Successful in 27s
/ ls (push) Successful in 27s
add order
2024-06-14 17:41:00 +02:00

12 lines
273 B
Twig

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