{% extends "main.html" %} {% block title %}Statistics{% endblock %} {% block content %}
{% for week in stats['weeks'] %}

Week: {{ week['week_number'] }}

Submissions Redirects Unique urls (including redirects) Unique domains (including redirects)
{{ week['submissions'] }} {{ week['redirects'] }} {{ week['uniq_urls'] }} {{ week['uniq_domains'] }}
{% endfor %}
{% for year in stats['years'] %}

Year: {{ year['year'] }}

{% for month in year['months'] %} {% endfor %}
Month Submissions Redirects Unique urls (including redirects) Unique domains (including redirects)
{{ month_name(month['month_number']) }} {{ month['submissions'] }} {{ month['redirects'] }} {{ month['uniq_urls'] }} {{ month['uniq_domains'] }}
{% endfor %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block styles %} {{ super() }} {% endblock %}