{% extends 'admin/_layout.html.twig' %} {% set active_nav = 'statistics' %} {% block title %}Admin · Estadísticas{% endblock %} {% block admin_content %}

Estadísticas

{{ totals.today }}
Visitas hoy
{{ totals.last7 }}
Visitas (7 días)
{{ totals.last30 }}
Visitas (30 días)
{{ totals.allTime }}
Visitas totales
{{ uniqueVisitors.last7 }}
Visitantes únicos (7 días)
{{ uniqueVisitors.last30 }}
Visitantes únicos (30 días)

Visitas por día (últimos 30 días)

{% for day, count in dailyCounts %} {% set barHeight = (count / maxDailyCount) * 125 %} {% set barX = loop.index0 * 26 %} {{ day }}: {{ count }} vista{{ count == 1 ? '' : 's' }} {% if loop.index0 % 5 == 0 %} {{ day|date('d/m') }} {% endif %} {% endfor %}
Ver datos en tabla
{% for day, count in dailyCounts %} {% endfor %}
FechaVisitas
{{ day|date('d/m/Y') }}{{ count }}

Artículos más vistos

{% for row in topArticles %} {% else %} {% endfor %}
Artículo Visitas
{% if row.article %} {{ row.article.title }} {% else %} {{ row.slug }} (artículo eliminado) {% endif %} {{ row.views }}
Todavía no hay visitas registradas.
{% endblock %}