caisse-bliss/templates/product/show.html.twig

43 lines
1.0 KiB
Twig
Raw Normal View History

2025-02-09 16:10:35 +01:00
{% extends 'base.html.twig' %}
2025-02-09 16:39:38 +01:00
{% block title %}Product{% endblock %}
2025-02-09 16:10:35 +01:00
{% block body %}
<h1>Product</h1>
2025-02-09 16:39:38 +01:00
<table class="table">
2025-02-09 16:10:35 +01:00
<tbody>
2025-02-09 16:39:38 +01:00
<tr>
<th>Id</th>
<td>{{ product.id }}</td>
</tr>
<tr>
<th>Name</th>
<td>{{ product.name }}</td>
</tr>
<tr>
<th>Price</th>
<td>{{ product.price }}</td>
</tr>
<tr>
<th>Stock</th>
<td>{{ product.stock }}</td>
</tr>
2025-02-14 14:25:23 +01:00
<tr>
<th>Image</th>
<td>{{ product.image }}</td>
</tr>
<tr>
<th>Comment</th>
<td>{{ product.comment }}</td>
</tr>
2025-02-09 16:10:35 +01:00
</tbody>
</table>
2025-02-09 16:39:38 +01:00
<a href="{{ path('app_product_index') }}">back to list</a>
<a href="{{ path('app_product_edit', {'id': product.id}) }}">edit</a>
{{ include('product/_delete_form.html.twig') }}
2025-02-09 16:10:35 +01:00
{% endblock %}