{% extends "layout.html" %} {% block title %}Visitor History{% endblock %} {% block content %}

Visitor History

Unique visitors and hit counts have been logged on this site since {{ history["oldest"] }}.

The most unique visitors on this site in one day has been {{ history["most_unique"][1] }} on {{ history["most_unique"][0] }}. The most hits total in one day has been {{ history["most_hits"][1] }} on {{ history["most_hits"][0] }}.

Here is a full list of hits over time. Percentages are relative to the current records.

{% for date in history["traffic"]|reverse %} {% endfor %}
Date Graph Details
{{ date["date"] }} {% set pct = (date["unique"] / history["most_unique"][1]) * 100 %}
Unique: {{ date["unique"] }} ({{ pct|int }}%)
{% set pct = (date["unique"] / history["most_unique"][1]) * 100 %}
Hits: {{ date["hits"] }} ({{ pct|int }}%)
{% endblock %}