{% extends "base.html" %} {% block title %} User traffic {% endblock %} {% load static %} {% block content %}

Activity

Usage by time of day (last {{ days }} days)

Popular pages from the last {{ days }} days

{% for page in page_views %} {% endfor %}
Page Views
{{ page.title }} {{ page.view_count }}

Top user agents from the last 24 hours

Useful for spotting and filtering out bots.

{% for agent in top_user_agents %} {% empty %} {% endfor %}
User agent Views
{{ agent.user_agent }} {{ agent.view_count }}
No page views in the last 24 hours.

Heat map of traffic over the last {{ days }} days

{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}