{% extends "admin/index.html" %}
{% load i18n %}
{% block content %}
{% trans "General" %}
- {% trans "Unique USER_AGENTs" %}: {{ distinct_user_agents_count }}
- {% trans "Entries total" %}: {{ total_entries.all_entries }}
- {% trans "iPad entries" %}: {{ total_entries.ipad_entries }}
- {% trans "iPhone entries" %}: {{ total_entries.iphone_entries }}
- {% trans "iPod entries" %}: {{ total_entries.ipod_entries }}
- {% trans "Android entries" %}: {{ total_entries.android_entries }}
- {% trans "S60 entries" %}: {{ total_entries.s60_entries }}
- {% trans "Bada entries" %}: {{ total_entries.bada_entries }}
- {% trans "Blackberry entries" %}: {{ total_entries.blackberry_entries }}
{% trans "Android" %}
{% trans "Browsers" %}
- Webkit: {{ android_browsers.webkit }}
- Opera: {{ android_browsers.opera }}
- Firefox: {{ android_browsers.firefox }}
{% trans "Device types" %}
- {% trans "Phones" %}: {{ android_devices.phones }} ({% trans "resolution below 640x480 / 480x640" %})
- {% trans "Tablets" %}: {{ android_devices.tablets }}
{% trans "System versions" %}
{% for version, hits in android_versions.items %}
- {{ version }}: {{ hits }}
{% endfor %}
{% trans "Popular screen resolutions" %}
{% for entry in resolutions.all %}
- {{ entry.screen_width }}x{{ entry.screen_height }}: {{ entry.wcount }}
{% endfor %}
{% trans "Popular resolutions for Android devices" %}
{% for entry in resolutions.android %}
- {{ entry.screen_width }}x{{ entry.screen_height }}: {{ entry.wcount }}
{% endfor %}
{% endblock %}
{% block sidebar %}
{% include "stats/partials/sidebar.html" %}
{% endblock %}