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

Pointages - {{ user.prenom }} {{ user.nom }}

{% if heuresAgent|length > 0 %} {% set i = 1 %} {% for heureAgent in heuresAgent %} {% set color = "white" %} {% if heureAgent.total > 655214 %} {% set color = "#0CDF26" %} {% elseif heureAgent.total > 600600 %} {% set color = "#8DEE99" %} {% elseif heureAgent.total > 546000 %} {% set color = "white" %} {% elseif heureAgent.total > 496400 %} {% set color = "#FFB3B3" %} {% else %} {% set color = "#E93131" %} {% endif %}
{{ heureAgent.mois }} / {{ heureAgent.annee }}
{% set total = heureAgent.total / 3600 %}
{{ total|round(2) }} h
{% set i = i + 1 %} {% endfor %} {% else %} {% include 'app/noResult.html.twig' %} {% endif %} {% endblock %}