{% extends 'base.html.twig' %} {% block title %}Visitor Analytics{% endblock %} {% block body %}

Page Visit Analytics

Visit Count by Route

{% if visitStats|length > 0 %} {% for stat in visitStats %} {% endfor %}
Route Visit Count
{{ stat.route }} {{ stat.count }}
{% else %}

No visit data recorded yet.

{% endif %}

This data shows the number of page visits per route. No personal user data is collected.

{% endblock %}