{% extends 'TdbBaseBundle::layout.html.twig' %} {% block title %}Liste des membres{% endblock %} {% block body %} {% if is_granted('ROLE_MEMBRE_ADMIN') %}

Liste des membres

Ajouter des utilisateurs Désactiver tous les postulants Promouvoir un postulant
{% endif %}
{% if is_granted('ROLE_MEMBRE_ADMIN') %} {% endif %} {% for membre in membres if is_granted('ROLE_MEMBRE_ADMIN') or membre.accountNonExpired %} {% if is_granted('ROLE_MEMBRE_ADMIN') %} {% if membre.accountNonExpired %} {% else %} {% endif %} {% endif %} {% endfor %}
  Nom Prénom Promotion  
{% if membre.webPath is not null %} Avatar {% else %} Gravatar {% endif %} {{ membre.nom }} {{ membre.prenom }} {{ membre.annee}}
{% if is_granted('ROLE_MEMBRE_ADMIN') %} {% if not isgranted("ROLE_MEMBRE", membre) %} Promouvoir {% endif %} {% endif %} {% if is_granted('ROLE_ALLOWED_TO_SWITCH') and not is_granted('ROLE_PREVIOUS_ADMIN') %}Impersonate{% endif %} Profil {% if is_granted('ROLE_MEMBRE_ADMIN') %}Editer{% endif %} {% if is_granted('ROLE_ADMIN') %}{% endif %}
{% endblock %}