Initial commit

This commit is contained in:
2025-07-15 23:39:10 +02:00
parent 1d3986a901
commit fb14214612
181 changed files with 31070 additions and 50 deletions

View File

@ -0,0 +1,11 @@
{% extends '_dashboard/base.html.twig' %}
{% block page_content %}
<h1>Edit Item</h1>
{{ include('_dashboard/item/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('bo_item_index', {'itemCategoryId': itemCategory.id}) }}">back to list</a>
{{ include('_dashboard/item/_delete_form.html.twig') }}
{% endblock %}