{% extends "base.html" %} {% load humanize %} {% block title %}Website Statistics{% endblock %} {% block content %} {% include "includes/sidenav.html" %}

Web Traffic

Last 30 days
{% if web_stats.date %} {{ web_stats.date|timesince }} ago {% else %} No data {% endif %}
Total Views {{ web_stats.total_views|intcomma }}
Unique Visitors {{ web_stats.unique_visitors|intcomma }}

User Agents

Top 50 User Agents
{{ unique_agents_count }} Unique Agents
{% for url in url_info %} {% empty %} {% endfor %}
Path View Name Views % of Total
{{ url.path }} {{ url.view_name }} {{ url.view_count }} {% if total_views > 0 %} {% widthratio url.view_count total_views 100 as percentage %} {{ percentage|floatformat:1 }}% {% else %} 0% {% endif %}
No URL statistics available
{% endblock %} {% block extra_js %} {% endblock %}