Initial commit

This commit is contained in:
Crizomb 2025-06-28 12:17:52 +02:00
commit 3bc898dd10
130 changed files with 25918 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{% extends 'base.html.twig' %}
{% block title %}ADMIN Membres{% endblock %}
{% block main %}
<h1>Liste des Membres</h1>
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Pseudo</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for membre_fractal in membre_fractales %}
<tr>
<td>{{ membre_fractal.id }}</td>
<td>{{ membre_fractal.pseudo }}</td>
<td>
<a href="{{ path('app_membre_fractal_show', {'id': membre_fractal.id}) }}" class="btn btn-primary">Détails</a>
<a href="{{ path('app_membre_fractal_edit', {'id': membre_fractal.id}) }}" class="btn btn-danger">Éditer</a>
</td>
</tr>
{% else %}
<tr>
<td colspan="4">no records found</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}