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

{{ page.title }}

{{ page.pub_date|date:"SHORT_DATE_FORMAT" }} {% include "sisyphus/tags.html" %}

Page Summary

{{ page.summary|safe }}

Page Statistics

{{ page.title }} has received {{ analytics.views }} pageviews (an average of {{ analytics.avg_daily_views|floatformat }} views per day since publication).

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 }}

Page Referrers

Top referrers for this page. Show up to {{ ana_max_results }} referrers with at least {{ ana_min_page_ref_pv }} pageviews.

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