{{ total_24h }}
Views — last 24 h
{{ total_7d }}
Views — last 7 days
{{ total_all }}
Views — all time
Top pages (last 7 days)
{% if top_pages %}
{% set max_count = top_pages[0][1] %}
{% for path, count in top_pages %}
|
{{ path }}
|
{{ count }} |
{% endfor %}
{% else %}
No data yet
{% endif %}
Top referrers (last 7 days)
{% if top_refs %}
{% set max_ref = top_refs[0][1] %}
{% for ref, count in top_refs %}
|
{{ ref or "direct / unknown" }}
|
{{ count }} |
{% endfor %}
{% else %}
No data yet
{% endif %}
Recent activity (last 100 hits)
{% if recent %}
| Time |
Page |
Referrer |
User agent |
{% for v in recent %}
| {{ v.ts }} |
{{ v.path }} |
{{ v.ref or "—" }} |
{{ v.ua or "—" }} |
{% endfor %}
{% else %}
No pageviews recorded yet.
{% endif %}