{% extends "base.html" %} {% block canonnical %}{% endblock %} {% block title %}Analytics - {{ block.super }}{% endblock %} {% block body %}

Site Analytics

Take a few minutes to learn about how traffic has interacted with the content pages on this site. The aim is explore what kinds of content is successful on this site, rather than exploring the effectiveness of navigation.

Pageviews for Recent Days

Show daily pageviews for trailing window.

{% for date, count in analytics.recent_days %}{% endfor %}
DateViews
{{ date|date:"SHORT_DATE_FORMAT" }}{{ count }}

Top Pages by Pageviews

Traffic to each content page (navigation pages, etc are not included). Show up to {{ ana_max_results }} pages with at least {{ ana_min_page_pv }} pageviews.

{% for slug, count in analytics.pageviews %}{% endfor %}
PageViews
/{{ slug }}/{{ count }}

Top Referrers by Pageviews

Top referrers for this site. Show up to {{ ana_max_results }} referrers with at least {{ ana_min_ref_pv }} pageviews.

{% for refer, count in analytics.referrers %}{% endfor %}
ReferViews
{{ refer|lower }}{{ count }}

User Agents

Top user-agents for this site. Show up to {{ ana_max_results }} user-agents with at least {{ ana_min_useragent }} pageviews.

{% for agent, count in analytics.useragents %}{% endfor %}
User AgentViews
{{ agent }}{{ count }}
{% endblock %}