12 lines
286 B
Twig
Raw Normal View History

2025-02-09 16:39:38 +01:00
{% extends 'base.html.twig' %}
{% block title %}New GroupOfProducts{% endblock %}
{% block body %}
<h1>Create new GroupOfProducts</h1>
{{ include('group_of_products/_form.html.twig') }}
<a href="{{ path('app_group_of_products_index') }}">back to list</a>
{% endblock %}