futtern/templates/food_vendor/edit.html.twig

12 lines
287 B
Twig
Raw Normal View History

2024-06-10 18:22:44 +00:00
{% 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>
{% endblock %}