{% extends 'base.html.twig' %} {% block body %}

Bonjour et bienvenue {{ app.user.firstname }} !

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

Formation commencée :

{% for lesson in user.lessons %}
{{ lesson.title }}
{% 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 %}
{{ (total / div) | round }}%

{% if total / div != 100 %} Continuer la formation {% else %} Revoir la formation {% endif %}

{% endfor %} {% endblock %}