futtern/templates/food_vendor/edit.html.twig
2024-06-10 20:22:44 +02:00

13 lines
344 B
Twig

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