|
@@ -10,6 +10,9 @@
|
|
|
<thead class="thead-dark">
|
|
|
<tr>
|
|
|
<th>Username</th>
|
|
|
+ <th>Prénom</th>
|
|
|
+ <th>Nom</th>
|
|
|
+ <th>Mail</th>
|
|
|
<th>Roles</th>
|
|
|
<th>Actions</th>
|
|
|
</tr>
|
|
@@ -18,6 +21,9 @@
|
|
|
{% for user in users %}
|
|
|
<tr>
|
|
|
<td>{{ user.username }}</td>
|
|
|
+ <td>{{ user.prenom }}</td>
|
|
|
+ <td>{{ user.nom }}</td>
|
|
|
+ <td>{{ user.mail }}</td>
|
|
|
<td>{% for role in user.roles %}<p>{{ role }}</p>{% endfor %}</td>
|
|
|
<td>
|
|
|
{% if user != app.user %}<a href="{{ path('admin_deluser', {'id': user.id}) }}"><i class="fas fa-trash", style="color:Tomato;"></i></a>{% endif %}
|