clone of github.com/decent-newsroom/newsroom
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
1.5 KiB

{% extends 'layout.html.twig' %}
{% block title %}Visitor Analytics{% endblock %}
{% block body %}
<div class="analytics-container">
<h1>Page Visit Analytics</h1>
<div class="analytics-card">
<h2>Total Visits</h2>
<ul class="analytics-stats">
<li><strong>Last 24 hours:</strong> {{ last24hCount }}</li>
<li><strong>Last 7 days:</strong> {{ last7dCount }}</li>
</ul>
</div>
<div class="analytics-card">
<h2>Visit Count by Route</h2>
{% if visitStats|length > 0 %}
<table class="analytics-table">
<thead>
<tr>
<th>Route</th>
<th style="min-width: 100px;text-align: right;">#</th>
</tr>
</thead>
<tbody>
{% for stat in visitStats %}
<tr>
<td>{{ stat.route }}</td>
<td class="text-right">{{ stat.count }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p>No visit data recorded yet.</p>
{% endif %}
</div>
<div class="analytics-info">
<p>This data shows the number of page visits per route. No personal user data is collected.</p>
</div>
</div>
{% endblock %}