36 lines
1006 B
Twig
36 lines
1006 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}StatutTables index{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>StatutTables index</h1>
|
||
|
|
||
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Id</th>
|
||
|
<th>Libellé</th>
|
||
|
<th>actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for statut_table in statut_tables %}
|
||
|
<tr>
|
||
|
<td>{{ statut_table.id }}</td>
|
||
|
<td>{{ statut_table.Libellé }}</td>
|
||
|
<td>
|
||
|
<a href="{{ path('app_statut_tables_show', {'id': statut_table.id}) }}">show</a>
|
||
|
<a href="{{ path('app_statut_tables_edit', {'id': statut_table.id}) }}">edit</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% else %}
|
||
|
<tr>
|
||
|
<td colspan="3">no records found</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<a href="{{ path('app_statut_tables_new') }}">Create new</a>
|
||
|
{% endblock %}
|