caisse-bliss/templates/product/edit.html.twig

14 lines
326 B
Twig
Raw Normal View History

2025-02-09 16:10:35 +01:00
{% extends 'base.html.twig' %}
2025-02-09 16:39:38 +01:00
{% block title %}Edit Product{% endblock %}
2025-02-09 16:10:35 +01:00
{% block body %}
2025-02-09 16:39:38 +01:00
<h1>Edit Product</h1>
{{ include('product/_form.html.twig', {'button_label': 'Update'}) }}
2025-02-09 16:10:35 +01:00
2025-02-09 16:39:38 +01:00
<a href="{{ path('app_product_index') }}">back to list</a>
2025-02-09 16:10:35 +01:00
2025-02-09 16:39:38 +01:00
{{ include('product/_delete_form.html.twig') }}
2025-02-09 16:10:35 +01:00
{% endblock %}