{% extends 'admin/stats/_layout.html.twig' %} {% set stats_route_name = 'admin_stats_comportement' %} {% set stats_extra_params = {metric: metric} %} {% block stats_title %}Comportement{% endblock %} {% block stats_help_title %}Comportement{% endblock %} {% block stats_help_content %}

Comportement

Cette page montre comment les visiteurs interagissent avec votre site.

Duree moyenne — temps passe sur le site. Plus c'est long, plus votre contenu interesse.

Taux de rebond — visiteurs qui partent apres une seule page. Un taux eleve sur la page d'accueil est preoccupant ; sur une page contact, c'est normal (le visiteur a trouve l'info et vous appelle).

Pages / session — nombre moyen de pages visitees. Un chiffre superieur a 2 indique un bon maillage interne.

Scroll moyen — jusqu'ou les visiteurs descendent. Si c'est bas, vos contenus sont peut-etre trop longs ou le debut n'accroche pas.

Graphe d'evolution — suivez la tendance sur 30 jours pour chaque indicateur. Basculez entre Duree, Rebond et Profondeur.

Detail par page — chaque page avec ses propres metriques. L'etoile marque les pages a fort engagement (> 2min + > 70% scroll).

{% endblock %} {% block stats_content %} {# --- KPI cards --- #}
{{ behavior.avg_duration ? (behavior.avg_duration // 60 ~ 'm' ~ '%02d'|format(behavior.avg_duration % 60) ~ 's') : '—' }}
Duree moyenne
{% include 'admin/stats/_trend.html.twig' with {trend: behavior.avg_duration_trend, invert: false} %}
{{ behavior.bounce_rate is not null ? behavior.bounce_rate ~ '%' : '—' }}
Taux de rebond
{% include 'admin/stats/_trend.html.twig' with {trend: behavior.bounce_rate_trend, invert: true} %}
{{ behavior.avg_depth ?? '—' }}
Pages / session
{% include 'admin/stats/_trend.html.twig' with {trend: behavior.avg_depth_trend, invert: false} %}
{{ behavior.avg_scroll is not null ? behavior.avg_scroll ~ '%' : '—' }}
Scroll moyen
{% include 'admin/stats/_trend.html.twig' with {trend: behavior.avg_scroll_trend, invert: false} %}
{# --- Graphe temporel --- #}

Evolution sur 30 jours

{# --- Tableau pages enrichi --- #}

Detail par page

{% if topPages|length > 0 %}
{% for page in topPages %} {% endfor %}
Page Vues Duree moy. Scroll Rebond
{{ page.url }} {{ page.views }} {{ page.avg_duration ? (page.avg_duration // 60 ~ ':' ~ '%02d'|format(page.avg_duration % 60)) : '—' }} {{ page.avg_scroll ? page.avg_scroll ~ '%' : '—' }} {{ page.bounce_rate is not null ? page.bounce_rate ~ '%' : '—' }} {% if page.avg_duration is not null and page.avg_duration > 120 and page.avg_scroll is not null and page.avg_scroll > 70 %} {% endif %}
{% else %}

Aucune donnee.

{% endif %}
{% endblock %}