{% extends 'base_param_be.html.twig' %} {% import 'macros/macro.html.twig' as macro %} {% block title %} {{ parent() }} Gestion des utilisateurs {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %} {{ parent() }}

Liste des utilisateurs

{% for user in users %} {% endfor %}
ID email et infos Type Fonctionnalités
{{ user.id}}
{{ user.email }} {% if user.type == 'CLIENT' %}
Client Code : {{ user.customerId}}
Client Nom : {{ user.customerName}}
Client Agence : {{ user.Agence}}
Créé sur le site de services le : {{ user.createdAt|date('d/m/Y H:i:s') }} {% if user.lastLogin %}
Derniere connexion le : {{ user.lastLogin|date('d/m/Y H:i:s') }}{% endif %} {% if user.ebpContactMultiple %}
Liste des contacts EBP pour ce mail :
{% set contacts = user.ebpContactMultiple|split('|') %} {% for key,value in contacts %} {{ value }}
{% endfor %} {% endif %} {% endif %}
{% if user.isClient %}
{{ user.type}}
{% else %}
{{ user.type}}
{% endif %}
{% for userservice in user.services %} {{ userservice.service.getName() }}
{% endfor %}
{% endblock %} {% block modal %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}