User Statistics

{% for user_stat in user_stats %} {% endfor %}
Username Files Storage Used Status
person {{ user_stat.username }} {{ user_stat.file_count or 0 }} {{ "%.1f"|format((user_stat.total_size or 0) / 1024 / 1024) }} MB Active

Recent Activities

{% for activity in recent_activities %}
{% if activity.action == 'upload' %}upload_file {% elif activity.action == 'download' %}download {% elif activity.action == 'delete' %}delete {% elif activity.action == 'login' %}login {% elif activity.action == 'logout' %}logout {% else %}info {% endif %}
{{ activity.user.username if activity.user else 'System' }}
{% if activity.action == 'upload' %}Uploaded file {% elif activity.action == 'download' %}Downloaded file {% elif activity.action == 'delete' %}Deleted file {% elif activity.action == 'login' %}Logged in {% elif activity.action == 'logout' %}Logged out {% else %}File activity {% endif %}
{{ activity.created_at.strftime('%H:%M on %b %d') }}
{% endfor %}