11 lines
284 B
Twig
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 %}
|