{% extends "base.html" %} {% block content %} {% if sync_result and (sync_result.added > 0 or sync_result.removed > 0) %}
Synced: {{ sync_result.added }} file{{ 's' if sync_result.added != 1 }} added, {{ sync_result.removed }} removed
{% endif %} {% if folders %}
All / {% for f in folders %} {{ f }} {% endfor %}
{% endif %} {% if items %}
{% for item in items %}
{{ item.original_filename }} {{ item.folder }} {% 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{{ ' in this folder' if current_folder is not none else ' uploaded yet' }}
Upload First File
{% endif %} {% endblock %}