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

11 lines
284 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New InventoryRecord{% endblock %}
{% block body %}
<h1>Create new InventoryRecord</h1>
{{ include('inventory_record/_form.html.twig') }}
<a href="{{ path('app_inventory_record_index') }}">back to list</a>
{% endblock %}