52 lines
1.8 KiB
Twig
52 lines
1.8 KiB
Twig
{% block body %}
|
|
|
|
{% if title is defined %}
|
|
<h3>{{ title }}</h3>
|
|
{% endif %}
|
|
<table class="table align-middle shadow">
|
|
<thead class="table-light shadow-sm">
|
|
<tr>
|
|
<th>Picture</th>
|
|
<th>Surname</th>
|
|
<th>Name</th>
|
|
<th>Email</th>
|
|
<th>Statut</th>
|
|
<th>Visualiser</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% if org.users|length == 0 %}
|
|
<tr>
|
|
<td colspan="6" class="text-center">Aucun utilisateur trouvé.</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% for user in org.users %}
|
|
<tr>
|
|
<td>
|
|
{% if user.pictureUrl %}
|
|
<img src="{{ asset(user.pictureUrl) }}" alt="User profile pic" class="rounded-circle" style="width:40px; height:40px;">
|
|
{% endif %}
|
|
</td>
|
|
<td>{{ user.surname }}</td>
|
|
<td>{{ user.name }}</td>
|
|
<td>{{ user.email }}</td>
|
|
{# <td>#}
|
|
{# {% if user.isActive %}#}
|
|
{# <span class="badge bg-success">Actif</span>#}
|
|
{# {% else %}#}
|
|
{# <span class="badge bg-secondary">Inactif</span>#}
|
|
{# {% endif %}#}
|
|
{# </td>#}
|
|
<td> <span class="badge bg-success">Actif</span></td>
|
|
<td>
|
|
<a href="{{ path('user_show', {'id': user.id}) }}" class="p-3 align-middle">
|
|
<i class="icon-grid menu-icon color-primary">
|
|
{{ ux_icon('fa6-regular:eye', {height: '30px', width: '30px'}) }}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
</table>
|
|
{% endblock %} |