{% if heuresAgent|length == 0 %} {% include 'app/noResult.html.twig' %} {% else %} {% 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 %} {% set total = heureAgent.total / 3600 %} {% set i = i + 1 %} {% endfor %}
Agent Annee Mois Total
{{ heureAgent.agent }} {{ heureAgent.annee }} {{ heureAgent.mois }} {{ total|round(2) }} h
{% endif %}