36 lines
1.0 KiB
Twig
36 lines
1.0 KiB
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}GroupOfProducts index{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>GroupOfProducts index</h1>
|
||
|
|
||
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Id</th>
|
||
|
<th>Name</th>
|
||
|
<th>actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for group_of_product in group_of_products %}
|
||
|
<tr>
|
||
|
<td>{{ group_of_product.id }}</td>
|
||
|
<td>{{ group_of_product.name }}</td>
|
||
|
<td>
|
||
|
<a href="{{ path('app_group_of_products_show', {'id': group_of_product.id}) }}">show</a>
|
||
|
<a href="{{ path('app_group_of_products_edit', {'id': group_of_product.id}) }}">edit</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% else %}
|
||
|
<tr>
|
||
|
<td colspan="3">no records found</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<a href="{{ path('app_group_of_products_new') }}">Create new</a>
|
||
|
{% endblock %}
|