{% extends "admin/base.html" %} {% block extra_head %} {{ super() }} {% endblock %} {% block admin_content %}
Analytics
Session Duration
{{ analytics_stats.duration.avg }}s
Average Duration
{{ analytics_stats.duration.min }}s
Minimum Duration
{{ analytics_stats.duration.max }}s
Maximum Duration
{{ analytics_stats.duration.total }}
Total Sessions
Cache Performance
{{ analytics_stats.cache.hits }}
Cache Hits
{{ analytics_stats.cache.misses }}
Cache Misses
{% if analytics_stats.cache.total > 0 %} {{ "%.1f"|format((analytics_stats.cache.hits / analytics_stats.cache.total) * 100) }}% {% else %} 0% {% endif %}
Hit Rate
Top IP Address Regions (Anonymized)
{% for ip_stat in analytics_stats.top_ips %} {% endfor %}
IP Range Vote Count
{{ ip_stat.ip }} {{ ip_stat.count }}
Browser/Device Statistics
{% for browser_stat in analytics_stats.browsers %} {% endfor %}
Browser/Device Vote Count
{{ browser_stat.browser }} {{ browser_stat.count }}
Recent Votes with Analytics Data
{% for vote in analytics_stats.recent_votes %} {% endfor %}
ID Date User Type Duration (s) IP Range Cache Hit Chosen Model Rejected Model
{{ vote.id }} {{ vote.vote_date.strftime('%Y-%m-%d %H:%M') }} {{ vote.username or 'Anonymous' }} {{ vote.model_type }} {{ vote.duration }} {{ vote.ip }} {% if vote.cache_hit %} Yes {% else %} No {% endif %} {{ vote.chosen_model }} {{ vote.rejected_model }}
{% endblock %}