{% extends "base.html" %} {% block title %}Dashboard - Cloud Drive{% endblock %} {% block content %}

Hello, {{ user.name }} 👋

Manage your files in the cloud

{{ files|length }}

Total Files

Storage Available

100%

Secure Storage

{% if files %}

Your Files

{% for file in files %}
{% if file.category == 'image' %}🖼️ {% elif file.category == 'pdf' %}📄 {% elif file.category == 'video' %}🎬 {% elif file.category == 'audio' %}🎵 {% elif file.category == 'archive' %}📦 {% elif file.category == 'document' %}📝 {% else %}📎 {% endif %}

{{ file.original_name }}

{{ file.size_formatted }} {{ file.date_formatted }}
{% if file.category in ['image', 'pdf'] %} {% endif %}
{% endfor %}
{% else %}

No files yet

Start uploading your files to the cloud. Your data is encrypted and secure.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}