Files
EXO_GDP/templates/categorie/index.html.twig
T
2025-01-09 09:31:51 +04:00

36 lines
960 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Categorie index{% endblock %}
{% block body %}
<h1>Categorie index</h1>
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Nom</th>
<th>actions</th>
</tr>
</thead>
<tbody>
{% for categorie in categories %}
<tr>
<td>{{ categorie.id }}</td>
<td>{{ categorie.nom }}</td>
<td>
<a href="{{ path('app_categorie_show', {'id': categorie.id}) }}">show</a>
<a href="{{ path('app_categorie_edit', {'id': categorie.id}) }}">edit</a>
</td>
</tr>
{% else %}
<tr>
<td colspan="3">no records found</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ path('app_categorie_new') }}">Create new</a>
{% endblock %}