{% if context == "match" %} {% for joueur in allJoueurs %} {% if tempsJeuJoueur[joueur.email] is defined %} {% set tempsDeJeu = tempsJeuJoueur[joueur.email]['tempsDeJeu'] %} {% else %} {% set tempsDeJeu = 0 %} {% endif %} {% endfor %}
Joueur Temps de jeu
{{joueur.prenom}} {{joueur.nom}}
{% elseif context == "joueur" %} {% set tempsDeJeuTotal = 0 %} {% for match in allMatchs %} {% if tempsJeuJoueur[match.id] is defined %} {% set tempsDeJeu = tempsJeuJoueur[match.id]["tempsDeJeu"] %} {% else %} {% set tempsDeJeu = 0 %} {% endif %} {% if match.moyenne %} {% set moyenne = match.moyenne %} {% else %} {% set moyenne = 0 %} {% endif %} {% set tempsDeJeuTotal = tempsDeJeu + tempsDeJeuTotal %} {% endfor %}
Match Temps de jeu Moyenne
{{match.libelleMatch}} {{match.dateMatch| date('d/m/Y') }}

Total temps de jeu : {{tempsDeJeuTotal}}/{{allMatchs|length * 80 }} minutes

{% endif %}