{% if clientYear == null %} {% set year = client|keys|last %} {% else %} {% set year = clientYear %} {% endif %}
Nouveau client
{% set keys = client | keys %} {% set index = 1 %} {% for item in keys %} {% if item == year %} {% set index = loop.index - 1 %} {% endif %} {% endfor %} {% if index > 0 %}
{{ keys[index - 1] }}
{% endif %} {{ year }} {% if index < keys | length - 1 %}
{{ keys[index + 1] }}
{% endif %}
{% include 'statistique/chart/line.html.twig' with {d1 : client[year],d1_label : 'Nombres' , label : 'Nouveau client' , id : 1, width : 100 , height : 50} %}