{% 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 %}
{% if not months.1 %}
{% else %}
{{months.1|safe}}
{% endif %}
{% if not months.2 %}
{% else %}
{{months.2|safe}}
{% endif %}
{% if not months.3 %}
{% else %}
{{months.3|safe}}
{% endif %}
{% if not months.4 %}
{% else %}
{{months.4|safe}}
{% endif %}
{% if not months.5 %}
{% else %}
{{months.5|safe}}
{% endif %}
{% if not months.6 %}
{% else %}
{{months.6|safe}}
{% endif %}
{% if not months.7 %}
{% else %}
{{months.7|safe}}
{% endif %}
{% if not months.8 %}
{% else %}
{{months.8|safe}}
{% endif %}
{% if not months.9 %}
{% else %}
{{months.9|safe}}
{% endif %}
{% if not months.10 %}
{% else %}
{{months.10|safe}}
{% endif %}
{% if not months.11 %}
{% else %}
{{months.11|safe}}
{% endif %}
{% if not months.12 %}
{% 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 %}