{% 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_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 %}