{% set nombre= 0 %}
{% for stats in statistiques %}
{% if sortie.criteres == 1 %}
| {{ stats.date_stat|date('d-m-Y') }} |
{% elseif sortie.criteres == 2 %}
{{ stats.date_stat|date("d") }} |
{% elseif sortie.criteres == 3 %}
{% set current_date = "now"|date('Y') %}
{{ stats.annee }} |
{% elseif sortie.criteres %}
{{ stats.date_stat|date('d-m-Y') }} |
{% endif %}
{{ stats.dnis }} |
{{ stats.categorie }} |
{{ stats.nombre }} |
{% set nombre= nombre+stats.nombre %}
{% endfor %}
| TOTAUX |
|
|
{{ nombre|number_format(0,'.',' ') }} |
{#{% include "ChakaStatsBundle:Statistiques:charts.html.twig" %}#}