This commit is contained in:
lubiana 2025-06-08 19:25:02 +02:00
parent b052697417
commit 43ca79f650
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
14 changed files with 292 additions and 57 deletions

View file

@ -0,0 +1,13 @@
{% 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 %}