User Statistics
| Username | Files | Storage Used | Status |
|---|---|---|---|
| {{ 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 %}
{% endfor %}
{{ 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') }}