futtern/templates/food_vendor/edit.html.twig
lubiana a7bec45c48
All checks were successful
/ ls (pull_request) Successful in 28s
/ ls (push) Successful in 28s
add food vendor tests
2024-06-14 20:26:12 +02:00

11 lines
287 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>
{% endblock %}