Dashboard

storage
Storage Used
{{ "%.2f"|format(total_size / 1024 / 1024) }} MB
of {{ "%.2f"|format(user.storage_quota / 1024 / 1024) }} MB
folder
Total Files
{{ total_files }}
files uploaded
trending_up
Recent Uploads
{{ recent_files|length }}
in last 7 days

Storage Usage Over Time

Recent Files

{% for file in recent_files %}
insert_drive_file {{ file.filename[:15] }}{% if file.filename|length > 15 %}...{% endif %}
{{ "%.1f"|format(file.file_size / 1024) }} KB {{ file.created_at.strftime('%b %d') }}
{% endfor %}

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 == 'rename' %}edit {% elif activity.action == 'share' %}share {% else %}info {% endif %}
{% if activity.action == 'upload' %}Uploaded file {% elif activity.action == 'download' %}Downloaded file {% elif activity.action == 'delete' %}Deleted file {% elif activity.action == 'rename' %}Renamed file {% elif activity.action == 'share' %}Shared file {% else %}File activity {% endif %}
{{ activity.created_at.strftime('%B %d, %Y at %I:%M %p') }}
{% endfor %}