{% extends "base.html" %} {% block title %}{{ breadcrumb[-1].name if breadcrumb else 'Parcourir' }}{% endblock %} {% block content %}
{% if entries or subpath %} {% if has_hits %}{% endif %} {% if subpath %} {% if has_hits %}{% endif %} {% endif %} {% for e in entries %} {% if has_hits %} {% endif %} {% endfor %}
Nom Taille Modifié leVues
{% if breadcrumb | length > 1 %} .. (dossier parent) {% else %} .. (racine) {% endif %}
{%- if e.is_dir -%}📁 {%- elif e.is_image -%}🖼 {%- elif e.is_pdf -%}📕 {%- elif e.is_text -%}📄 {%- else -%}📎 {%- endif -%}
{% if e.is_image %} {{ e.name }} {% endif %} {{ e.name }}{% if e.is_dir %}/{% endif %} {% if e.ext and not e.is_dir %} {{ e.ext }} {% endif %}
{{ humansize(e.size) if e.size is not none else '—' }} {{ e.mtime.strftime('%d/%m/%Y %H:%M') }} {% if not e.is_dir %} {% if e.hits %} {{ e.hits }} {% else %} 0 {% endif %} {% endif %} {% if not e.is_dir %}
{% endif %}
{% else %}

Dossier vide.

{% endif %}

Déposer des fichiers dans {{ ('/' + subpath) if subpath else '/' }}

{% endblock %}