{% extends 'analytics/base.html' %} {% load static %}{% load i18n %} {% block title %}{% trans "Events" %} – Analytics{% endblock %} {% block page_title %}Events{% endblock %} {% block page_subtitle %}Custom events and interactions{% endblock %} {% block filter_bar %} {% include 'analytics/includes/filter_bar.html' %} {% endblock %} {% block dashboard_content %}
{% trans "Events Today" %} {{ today_events }}
{% trans "Events Yesterday" %} {{ yesterday_events }}

{% trans "Events" %} – {{ date_range_label }}

{% for key, value in request.GET.items %} {% if key != 'compare' %} {% endif %} {% endfor %}
{% if chart_data %}
{% else %}
{% trans "No events recorded for this period." %}
{% endif %}

{% trans "Top Categories" %}

{% for item in top_categories %} {% empty %} {% endfor %}
{% trans "Category" %} {% trans "Events" %}
{{ item.category }} {{ item.count }}
{% trans "No events yet." %}

{% trans "Top Actions" %}

{% for item in top_actions %} {% empty %} {% endfor %}
{% trans "Category" %} {% trans "Action" %} {% trans "Events" %}
{{ item.category }} {{ item.action }} {{ item.count }}
{% trans "No events yet." %}

{% trans "Top Labels" %}

{% for item in top_labels %} {% empty %} {% endfor %}
{% trans "Label" %} {% trans "Events" %}
{{ item.label }} {{ item.count }}
{% trans "No labels yet." %}

{% trans "Events by Page" %}

{% for item in events_by_page %} {% empty %} {% endfor %}
{% trans "Page" %} {% trans "Events" %}
{{ item.path }} {{ item.count }}
{% trans "No page data yet." %}

{% trans "Recent Events" %}

{% for event in recent_events %} {% empty %} {% endfor %}
{% trans "Time" %} {% trans "Category" %} {% trans "Action" %} {% trans "Label" %} {% trans "Page" %}
{{ event.created_at|date:'H:i:s' }} {{ event.category }} {{ event.action }} {{ event.label|default:'—' }} {{ event.path }}
{% trans "No recent events." %}
{% endblock %} {% block page_scripts %} {% endblock %}