{% extends "admin/base.html" %} {% block title %}Analytics - Admin Dashboard{% endblock %} {% block admin_content %}

Analytics

Total Page Views
{{ total_views }}
Unique Visitors
{{ unique_visitors }}
Today's Views
{{ today_views }}
This Week
{{ week_views }}
Popular Pages
{% if popular_pages %}
{% for page in popular_pages %} {% endfor %}
Page Views
{{ page.path }} {{ page.view_count }}
{% else %}

No page view data available yet.

{% endif %}
Recent Activity
{% if recent_views %}
{% for view in recent_views %} {% endfor %}
Time Page User
{{ view.created_at.strftime('%H:%M') }} {{ view.path }} {% if view.user %} {{ view.user.nickname }} {% else %} Anonymous {% endif %}
{% else %}

No recent activity data available yet.

{% endif %}
Browser Statistics
{% if browser_stats %}
{% for stat in browser_stats %} {% endfor %}
Browser Views Percentage
{{ stat.browser or 'Unknown' }} {{ stat.view_count }}
{{ "%.1f"|format((stat.view_count / total_views * 100) if total_views > 0 else 0) }}%
{% else %}

No browser data available yet.

{% endif %}
{% endblock %}