HegreEtConfort/templates/stock/index.html.twig

40 lines
1.1 KiB
Twig
Raw Normal View History

2024-12-20 10:07:22 +01:00
{% extends 'base.html.twig' %}
{% block title %}Stock index{% endblock %}
{% block body %}
<h1>Stock index</h1>
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Wording</th>
<th>Description</th>
<th>Quantity</th>
<th>actions</th>
</tr>
</thead>
<tbody>
{% for stock in stocks %}
<tr>
<td>{{ stock.id }}</td>
<td>{{ stock.Wording }}</td>
<td>{{ stock.Description }}</td>
<td>{{ stock.Quantity }}</td>
<td>
<a href="{{ path('app_stock_show', {'id': stock.id}) }}">show</a>
<a href="{{ path('app_stock_edit', {'id': stock.id}) }}">edit</a>
</td>
</tr>
{% else %}
<tr>
<td colspan="5">no records found</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ path('app_stock_new') }}">Create new</a>
{% endblock %}