futtern/templates/vendor/edit.html.twig

14 lines
321 B
Twig
Raw Normal View History

2024-02-05 15:16:43 +00:00
{% extends 'base.html.twig' %}
{% block title %}Edit Vendor{% endblock %}
{% block body %}
<h1>Edit Vendor</h1>
{{ include('vendor/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_vendor_index') }}">back to list</a>
{{ include('vendor/_delete_form.html.twig') }}
{% endblock %}