{% extends 'main/base.html.twig' %} {% block title %}📣 Sortie.com Admin User 🔊{% endblock %} {% block content %}
{% include 'admin/sidebar.html.twig' %}

Gestion des utilisateurs

{% for participant in participants %} {% if not participant.pending %} {% endif %} {% else %} {% endfor %}
Nom Prénom Pseudo Site Téléphone Email Administrateur Actif Rôles Actions
{{ participant.nom }} {{ participant.prenom }} {{ participant.pseudo }} {{ participant.site ? participant.site.nom : "N/A" }} {{ participant.telephone }} {{ participant.email }} {{ participant.administrateur ? 'Oui' : 'Non' }} {{ participant.actif ? '❌' : '✔️' }} {{ participant.roles|join(', ') }} Logo Logo
Aucun participant trouvé
{# Tableau user en attente #}
{% for participant in participants %} {% if participant.pending %} {% endif %} {% else %} {% endfor %}
Nom Prénom Pseudo Téléphone Email Site Actions
{{ participant.nom }} {{ participant.prenom }} {{ participant.pseudo }} {{ participant.telephone }} {{ participant.email }}
Aucun participant en attente
{# Modale import CSV#} {% endblock %}