saufen/templates/inventory_record/edit.html.twig
2025-06-08 19:25:02 +02:00

13 lines
369 B
Twig

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