{% extends "base.html" %} {% block title %}{{ current_path or 'Home' }} - QRDrop{% endblock %} {% block breadcrumbs %} {% if breadcrumbs|length > 1 %} {% endif %} {% endblock %} {% block content %}
{{ total_items }} item{% if total_items != 1 %}s{% endif %} ({{ dir_count }} folder{% if dir_count != 1 %}s{% endif %}, {{ file_count }} file{% if file_count != 1 %}s{% endif %})
{% if allow_upload %} {% endif %} {% if allow_modify %} {% endif %}
{% if entries %}
{% for entry in entries %}
{% if entry.is_dir %} {{ entry.name }} {% else %} {{ entry.name }} {% endif %} {{ entry.size_human }} {{ entry.mtime }} {% if not entry.is_dir %} {% endif %} {% if allow_modify %} {% endif %} {% if allow_delete %} {% endif %}
{% endfor %}
{% else %}

This folder is empty

Drag and drop files here or click Upload to add files

{% endif %}
{% endblock %}