27 lines
677 B
Twig
27 lines
677 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}GroupOfProducts{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>GroupOfProducts</h1>
|
||
|
|
||
|
<table class="table">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th>Id</th>
|
||
|
<td>{{ group_of_product.id }}</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Name</th>
|
||
|
<td>{{ group_of_product.name }}</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<a href="{{ path('app_group_of_products_index') }}">back to list</a>
|
||
|
|
||
|
<a href="{{ path('app_group_of_products_edit', {'id': group_of_product.id}) }}">edit</a>
|
||
|
|
||
|
{{ include('group_of_products/_delete_form.html.twig') }}
|
||
|
{% endblock %}
|