{% extends "admin/base_site.html" %} {% load i18n %} {% load request_admin %} {% block extrahead %} {% if use_hosted_media %} {% else %} {% endif %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% for request in lastest_requests %} {% endfor %}
{% trans "Last 5 requests" %}
{% trans "Path" %} {% trans "From" %} {% trans "Response" %} {% trans "Time" %}
{{ request.path|trunc:"35" }} {% if request.user %}{{ request.user }}{% else %}{{ request.ip }}{% endif %} {{ request.get_response_display }} {{ request.time|date:"D M d H:i:s O Y" }}
{% for key,value in traffic_table %} {% for item in value %} {% endfor %} {% endfor %}
{% trans "Traffic information" %}
  {% trans "Today" %} {% trans "This week" %} {% trans "This month" %} {% trans "This year" %} {% trans "Alltime" %}
{{ key }}{{ item }}
{% trans "Traffic graph" %}
{% for path,hits in top_paths %} {% endfor %}
{% trans "Top paths" %} ({% trans "this month" %})
{% trans "Path" %} {% trans "Visits" %}
{{ path|trunc:"60" }} {{ hits }}
{% for path,hits in top_error_paths %} {% endfor %}
{% trans "Top error-returning paths" %} ({% trans "this month" %}) ({% trans "more" %})
{% trans "Path" %} {% trans "Visits" %}
{{ path|trunc:"60" }} {{ hits }}
{% for referrer,hits in top_referrers %} {% endfor %}
{% trans "Top referrers" %} ({% trans "this month" %})
{% trans "Referrer" %} {% trans "Visits" %}
{{ referrer|trunc:"60" }} {{ hits }}
{% for phrase,visits in top_search_phrases %} {% endfor %}
{% trans "Top search phrases" %} ({% trans "this month" %})
{% trans "Phrase" %} {% trans "Visits" %}
{{ phrase|trunc:"60" }} {{ visits }}

{% trans "Top browsers" %} ({% trans "this month" %})

{% endblock %}