2025-02-09 16:39:38 +01:00

14 lines
372 B
Twig

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