{% extends 'base.html' %} {% block content %}

Website Analytics Dashboard

IP: {{ current_ip|default:"Unknown" }}
Location: {{ current_location|default:"Unknown" }}

Public Page Analytics

{{ total_visits|default:0 }} total page visits in FY {{ selected_fy }}
Top 10 Most Visited Pages
{% if top_parts %}
{% for part in top_parts %} {% endfor %}
Page Path Visits
{{ part.name|default:"/" }} {{ part.visits }}
{% else %}

No page visit data available for this period.

{% endif %}
Visits by Location (Top 10)
{% if location_analytics.data %}
{% for label, count, percentage in location_analytics.data %} {% endfor %}
Location Visits Percentage
{{ label|default:"Unknown" }} {{ count }} {{ percentage }}%
{% else %}

No location data available.

{% endif %}
Top Pages by Location
{% if paths_by_location.locations %} {% for loc in paths_by_location.locations %}
{{ loc.location|default:"Unknown" }}
{% for label, count, percentage in loc.data %} {% endfor %}
Page Path Visits Percentage
{{ label|truncatechars:50 }} {{ count }} {{ percentage }}%
{% endfor %} {% else %}

No path data available by location.

{% endif %}
Device Types by Location
{% if devices_by_location.locations %} {% for loc in devices_by_location.locations %}
{{ loc.location|default:"Unknown" }}
{% for label, count, percentage in loc.data %} {% endfor %}
Device Visits Percentage
{{ label }} {{ count }} {{ percentage }}%
{% endfor %} {% else %}

No device data available.

{% endif %}
{% endblock %}