{% 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 }}
{% if chart_data %}
{% else %}
{% trans "No events recorded for this period." %}
{% endif %}
{% trans "Top Categories" %}
| {% trans "Category" %} |
{% trans "Events" %} |
{% for item in top_categories %}
| {{ item.category }} |
{{ item.count }} |
{% empty %}
| {% trans "No events yet." %} |
{% endfor %}
{% trans "Top Actions" %}
| {% trans "Category" %} |
{% trans "Action" %} |
{% trans "Events" %} |
{% for item in top_actions %}
| {{ item.category }} |
{{ item.action }} |
{{ item.count }} |
{% empty %}
| {% trans "No events yet." %} |
{% endfor %}
| {% trans "Label" %} |
{% trans "Events" %} |
{% for item in top_labels %}
| {{ item.label }} |
{{ item.count }} |
{% empty %}
| {% trans "No labels yet." %} |
{% endfor %}
{% trans "Events by Page" %}
| {% trans "Page" %} |
{% trans "Events" %} |
{% for item in events_by_page %}
| {{ item.path }} |
{{ item.count }} |
{% empty %}
| {% trans "No page data yet." %} |
{% endfor %}
{% trans "Recent Events" %}
| {% trans "Time" %} |
{% trans "Category" %} |
{% trans "Action" %} |
{% trans "Label" %} |
{% trans "Page" %} |
{% for event in recent_events %}
| {{ event.created_at|date:'H:i:s' }} |
{{ event.category }} |
{{ event.action }} |
{{ event.label|default:'—' }} |
{{ event.path }} |
{% empty %}
| {% trans "No recent events." %} |
{% endfor %}
{% endblock %}
{% block page_scripts %}
{% endblock %}