2025-02-09 16:10:35 +01:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block body %}
|
2025-02-09 16:39:38 +01:00
|
|
|
<h1>Product creation</h1>
|
2025-02-09 16:10:35 +01:00
|
|
|
|
|
|
|
{{ form_start(form) }}
|
|
|
|
{{ form_widget(form) }}
|
2025-02-09 16:39:38 +01:00
|
|
|
<input type="submit" class="btn btn-primary btn-block" value="Créer"/>
|
2025-02-09 16:10:35 +01:00
|
|
|
{{ form_end(form) }}
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>
|
2025-02-09 16:39:38 +01:00
|
|
|
<a class="btn btn-primary" href="{{ path('product_index') }}">
|
2025-02-09 16:10:35 +01:00
|
|
|
<i class="fa fa-arrow-left"></i>
|
|
|
|
Retour à la liste
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|