Files
COPILOT/templates/projet/_list.html.twig
BRAMAS Arthur 1b0601d724 add progression
2025-10-24 16:14:44 +02:00

15 lines
422 B
Twig

<table class="table">
<thead><tr><th>ID</th><th>Nom</th><th>Actions</th></tr></thead>
<tbody>
{% for projet in projets %}
<tr>
<td>{{ projet.id }}</td>
<td>{{ projet.nom }}</td>
<td>
<button data-bs-toggle="modal" data-bs-target="#modal" data-action="{{ path('projet_edit', {'id': projet.id}) }}">Edit</button>
</td>
</tr>
{% endfor %}
</tbody>
</table>