{% extends "base.html" %} {% block content %}
Activity overview for the reporting period
Daily unique active users and total events
Distribution of event types
Top users by total activity count
Users ranked by total activity
| Rank | User | Total Actions | Days Active | Event Types | Last Active |
|---|---|---|---|---|---|
| {{ loop.index }} | {{ row['User'] }} | {{ row['Total Actions'] }} | {{ row['Logins'] }} | {{ row['Event Types'] }} | {{ row['Last Active'] }} |
Breakdown of events by type
| Event Type | Count | Percentage |
|---|---|---|
| {{ row['Event Type'] }} | {{ row['Count'] }} | {{ "%.1f"|format(row['Percentage']) }}% |
Latest user actions (most recent first)
{% if data %}| Time | User | Event Type | Project |
|---|---|---|---|
| {{ row['Time'] }} | {{ row['User'] }} | {{ row['Event Type'] }} | {{ row['Project'] if row['Project'] else '-' }} |
Showing first 100 of {{ data|length }} events. Export to CSV/XLSX for full data.
{% endif %} {% else %}No user activity matches the current criteria.