{% extends "base.html" %} {% block content %} {% if items %}
{% for item in items %}
{{ item.original_filename }} {% if item.mime_type %} {{ item.mime_type.split('/')|last }} {% endif %} {% if item.size_bytes %} {{ "%.1f"|format(item.size_bytes / 1024) }} KB {% endif %} {% if item.description %} {{ item.description[:50] }} {% endif %}
Download
{% endfor %}
{% else %}
📁
No files uploaded yet
Upload First File
{% endif %} {% endblock %}