caisse-bliss/app/Resources/views/product/new.html.twig
2018-04-17 12:10:21 +02:00

17 lines
344 B
Twig
Executable File

{% extends 'base.html.twig' %}
{% block body %}
<h1>Product creation</h1>
{{ form_start(form) }}
{{ form_widget(form) }}
<input type="submit" value="Create" />
{{ form_end(form) }}
<ul>
<li>
<a href="{{ path('product_index') }}">Back to the list</a>
</li>
</ul>
{% endblock %}