{% extends 'admin.html.twig' %} {% block title %}Liste des Utilisateurs{% endblock %} {% block body %}

{{ user.firstname }} {{ user.lastname }}

{% if user.lastConnect is not null %}Dernière connexion : {{ user.lastConnect|date("d/m/Y") }}{% endif %}

  {{ user.email }}
  {{ user.etablissement }} ({{ user.association }})
  {{ user.fonction }}

Modifier cet utilisateur

{% if contents is defined %}

Inscrit au(x) cours :

{% for lesson in user.lessons %}
{% set total = 0 %} {% set div = 0 %} {% for advance in user.advances %} {% if advance.content in lesson.contents %} {% set div = div + 1 %} {% set total = total + advance.percentage %} {% endif %} {% endfor %} Date de l'inscription :

{% for register in user.lessonUsers %} {% if register.lesson == lesson %} {{ register.registerAt|date("d/m/Y") }} {% endif %} {% endfor %}

Pourcentage réalisé :

{{ (total / div) | round }}%

{% if (total / div) == 0 %} Non commencé {% elseif (total/div) > 0 and (total/div) < 100 %} En cours {% elseif (total/div) == 100 %} Terminé {% endif %} {{ lesson.title }}
{% for content in lesson.contents %} {% for contenu in user.advances %} {% if contenu.content == content %} {% endif %} {% endfor %} {% endfor %}
{{ content.title }}{{ contenu.percentage }} %
{% if total / div == 100 %}

  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 %}
{% endfor %} {% endif %}
{% endblock %} {% block javascripts %} {% endblock %}