{% extends 'traffic/reporter/daily/index.html' %} {% load l10n %} {% block contents %}

Daily Statistics

{% if error_text %}
ERROR! {{error_text}}
{{traceback}}
{% endif %} {% for year, months in entries.items %}

{{year}}

January

{% if not months.1 %}
No items found
{% else %} {{months.1|safe}} {% endif %}

February

{% if not months.2 %}
No items found
{% else %} {{months.2|safe}} {% endif %}

March

{% if not months.3 %}
No items found
{% else %} {{months.3|safe}} {% endif %}

April

{% if not months.4 %}
No items found
{% else %} {{months.4|safe}} {% endif %}

May

{% if not months.5 %}
No items found
{% else %} {{months.5|safe}} {% endif %}

June

{% if not months.6 %}
No items found
{% else %} {{months.6|safe}} {% endif %}

July

{% if not months.7 %}
No items found
{% else %} {{months.7|safe}} {% endif %}

August

{% if not months.8 %}
No items found
{% else %} {{months.8|safe}} {% endif %}

September

{% if not months.9 %}
No items found
{% else %} {{months.9|safe}} {% endif %}

October

{% if not months.10 %}
No items found
{% else %} {{months.10|safe}} {% endif %}

November

{% if not months.11 %}
No items found
{% else %} {{months.11|safe}} {% endif %}

December

{% if not months.12 %}
No items found
{% else %} {{months.12|safe}} {% endif %}
{% empty %}

Statistics is not available yet. Traffic reports are generated once a day, so please try again later.

{% endfor %} {% endblock %}