{% extends 'admin.html.twig' %} {% block title %}Liste des Utilisateurs{% endblock %} {% block body %}
{% if user.lastConnect is not null %}Dernière connexion : {{ user.lastConnect|date("d/m/Y") }}{% endif %}
{{ user.email }}
{{ user.etablissement }} ({{ user.association }})
{{ user.fonction }}
{{ content.title }} | {% for contenu in user.advances %} {% if contenu.content == content %}{{ contenu.percentage }} % | {% endif %} {% endfor %}
Envoyer l'attestation par email
{% for register in user.lessonUsers %} {% if register.lesson == lesson %} {% if register.certificated is null %} Vous n'avez pas encore envoyé le certificat {% else %} Dernier certificat envoyé le {{ register.certificatedAt|date("d/m/Y") }} {% endif %} {% endif %} {% endfor %}
{% endif %}