2018-04-05 17:24:43 +02:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<h1>Product</h1>
|
|
|
|
|
2018-04-17 14:52:31 +02:00
|
|
|
<table class="table-responsive table-striped table table-bordered table-light">
|
2018-04-05 17:24:43 +02:00
|
|
|
<tbody>
|
2018-04-17 14:52:31 +02:00
|
|
|
<tr>
|
|
|
|
<th>Id</th>
|
|
|
|
<td>{{ product.id }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<td>{{ product.name }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Image</th>
|
|
|
|
<td>{{ product.image }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Price</th>
|
|
|
|
<td>{{ product.price }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Comment</th>
|
|
|
|
<td>{{ product.comment }}</td>
|
|
|
|
</tr>
|
2018-04-05 17:24:43 +02:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>
|
2018-04-17 14:52:31 +02:00
|
|
|
<a class="btn btn-primary" href="{{ path('product_index') }}">
|
|
|
|
<i class="fa fa-arrow-left"></i>
|
|
|
|
Retour à la liste
|
|
|
|
</a>
|
2018-04-05 17:24:43 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
2018-04-17 14:52:31 +02:00
|
|
|
<a class="btn btn-primary" href="{{ path('product_edit', { 'id': product.id }) }}">edit</a>
|
2018-04-05 17:24:43 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
{{ form_start(delete_form) }}
|
2018-04-17 14:52:31 +02:00
|
|
|
<input type="submit" value="Delete">
|
2018-04-05 17:24:43 +02:00
|
|
|
{{ form_end(delete_form) }}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|