{% extends "admin/base_site.html" %}
{% load i18n %}
{% load request_admin %}
{% block extrahead %}
{% if use_hosted_media %}
{% else %}
{% endif %}
{% endblock %}
{% block breadcrumbs %}
{% endblock %}
{% block content %}
{% trans "Traffic information" %}
|
{% trans "Today" %} |
{% trans "This week" %} |
{% trans "This month" %} |
{% trans "This year" %} |
{% trans "Alltime" %} |
{% for key,value in traffic_table %}
{{ key }} |
{% for item in value %}
{{ item }} |
{% endfor %}
{% endfor %}
{% trans "Traffic graph" %}
{% trans "Top paths" %} ({% trans "this month" %})
{% trans "Path" %} |
{% trans "Visits" %} |
{% for path,hits in top_paths %}
{{ path|trunc:"60" }} |
{{ hits }} |
{% endfor %}
{% trans "Top error-returning paths" %} ({% trans "this month" %}) ({% trans "more" %})
{% trans "Path" %} |
{% trans "Visits" %} |
{% for path,hits in top_error_paths %}
{{ path|trunc:"60" }} |
{{ hits }} |
{% endfor %}
{% trans "Top referrers" %} ({% trans "this month" %})
{% trans "Referrer" %} |
{% trans "Visits" %} |
{% for referrer,hits in top_referrers %}
{{ referrer|trunc:"60" }} |
{{ hits }} |
{% endfor %}
{% trans "Top search phrases" %} ({% trans "this month" %})
{% trans "Phrase" %} |
{% trans "Visits" %} |
{% for phrase,visits in top_search_phrases %}
{{ phrase|trunc:"60" }} |
{{ visits }} |
{% endfor %}
{% trans "Top browsers" %} ({% trans "this month" %})
{% endblock %}