37 lines
1.0 KiB
Twig
37 lines
1.0 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}StatutTables index{% endblock %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('css/ControllerVues/list.css') }}"> <!-- Ajout du fichier CSS -->
|
|
{% 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_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 %}
|