futtern/templates/order_item/new.html.twig
lubiana 1dc5306967
All checks were successful
/ ls (pull_request) Successful in 27s
/ ls (push) Successful in 27s
add order
2024-06-14 17:41:00 +02:00

11 lines
260 B
Twig

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