{% trans_default_domain 'admin' %} {% set title = "Dans quelles villes vos utilisateurs se trouvent-ils ?"|trans %}

{{ title }}

{% if data %}
    {% set count = 0 %} {% for country, sessions in data %} {% for session in sessions %} {% set count = count + 1 %} {% endfor %} {% endfor %} {% for city, sessions in data %} {% if loop.index <= 8 %}
  • {% set title = city == 'undefined' ? 'N/C' : city|capitalize %} {{ title }} {% set percent = (sessions|length * 100) / count %}
  • {% endif %} {% endfor %}
{% else %}

{{ "Aucune donnée"|trans }}

{% endif %}
{% if data %}
{% if data|length > 8 %} {{ "Tout voir"|trans }} {% endif %}
{{ "Sessions par ville"|trans }}
{% endif %}
{% if data|length > 8 %} {% endif %}