{% extends 'traffic/reporter/index.html' %} {% load l10n %} {% block leftbar_stats %}class="active"{%endblock%} {% block body_fluid %}class="fluid-layout"{% endblock %} {% block contents %}

Traffic History

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

{{year}}

{% if not months.1 %}

January

No items found
{% else %}

January

{{months.1|safe}} {% endif %}
{% if not months.2 %}

February

No items found
{% else %}

February

{{months.2|safe}} {% endif %}
{% if not months.3 %}

March

No items found
{% else %}

March

{{months.3|safe}} {% endif %}
{% if not months.4 %}

April

No items found
{% else %}

April

{{months.4|safe}} {% endif %}
{% if not months.5 %}

May

No items found
{% else %}

May

{{months.5|safe}} {% endif %}
{% if not months.6 %}

June

No items found
{% else %}

June

{{months.6|safe}} {% endif %}
{% if not months.7 %}

July

No items found
{% else %}

July

{{months.7|safe}} {% endif %}
{% if not months.8 %}

August

No items found
{% else %}

August

{{months.8|safe}} {% endif %}
{% if not months.9 %}

September

No items found
{% else %}

September

{{months.9|safe}} {% endif %}
{% if not months.10 %}

October

No items found
{% else %}

October

{{months.10|safe}} {% endif %}
{% if not months.11 %}

November

No items found
{% else %}

November

{{months.11|safe}} {% endif %}
{% if not months.12 %}

December

No items found
{% else %}

December

{{months.12|safe}} {% endif %}
{% empty %}

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

{% endfor %} {% endblock %}