{% extends 'admin/stats/_layout.html.twig' %} {% set stats_route_name = 'admin_stats_index' %} {% block stats_title %}Vue d'ensemble{% endblock %} {% block stats_content %} {# --- KPI Comportement + Visiteurs --- #}
{{ visitors.value }}
Visiteurs
{% include 'admin/stats/_trend.html.twig' with {trend: visitors.trend, invert: false} %}
{{ 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} %}
{# --- Sources (donut) --- #}

Sources de trafic

Detail
{% if sources|length > 0 %} {% else %}

Pas encore de donnees.

{% endif %}
{# --- Appareils (donut) --- #}

Appareils

{% if devices|length > 0 %} {% else %}

Pas encore de donnees.

{% endif %}
{# --- Entonnoir conversion --- #}

Entonnoir de conversion

Detail
{% set max = funnel.visitors > 0 ? funnel.visitors : 1 %}
Visiteurs
{{ funnel.visitors }}
> 1 page
{{ funnel.engaged }} ({{ max > 0 ? (funnel.engaged / max * 100)|round(1) }}%)
Vu /contact
{{ funnel.saw_contact }} ({{ max > 0 ? (funnel.saw_contact / max * 100)|round(1) }}%)
Conversions
{{ funnel.converted }} ({{ funnel.rate ?? 0 }}%)
{# --- Heatmap temporel --- #}

Activite par jour et heure

{% if heatmap.max > 0 %}
{% for h in heatmap.hours %}
{{ h }}
{% endfor %}
{% for dayIdx, dayLabel in heatmap.days %}
{{ dayLabel }}
{% for hour in heatmap.hours %} {% set val = heatmap.grid[dayIdx][hour] %} {% set intensity = heatmap.max > 0 ? (val / heatmap.max) : 0 %}
{% if val > 0 %}{{ val }}{% endif %}
{% endfor %}
{% endfor %}
Faible
Fort
{% else %}

Pas encore de donnees.

{% endif %}
{# --- Top pages enrichi --- #}

Pages les plus vues

Detail
{% 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 ~ '%' : '—' }}
{% else %}

Aucune donnee pour cette periode.

{% endif %}
{% endblock %}