{% extends "base.html" %} {% block title %}Recherche{% endblock %} {% block content %}

Recherche

{% if searched %}
{% if results %}

{{ results | length }} résultat{% if results | length != 1 %}s{% endif %} {% if q %}pour « {{ q }} »{% endif %} {% if after %}· après {{ after }}{% endif %} {% if before %}· avant {{ before }}{% endif %}

{% for e in results %} {% endfor %}
Fichier Taille Modifié le
{%- if e.is_image -%}🖼 {%- elif e.is_pdf -%}📕 {%- elif e.is_text -%}📄 {%- else -%}📎 {%- endif -%}
{% if e.is_image %} {{ e.name }} {% endif %}
{{ e.name }} {{ e.path }} {% if e.content_match %} …{{ e.content_match }}… {% endif %}
{{ humansize(e.size) if e.size is not none else '—' }} {{ e.mtime.strftime('%d/%m/%Y %H:%M') }}
{% else %}

Aucun résultat {% if q %}pour « {{ q }} »{% endif %} {% if after or before %}dans la plage de dates sélectionnée{% endif %}.

{% endif %}
{% endif %} {% endblock %}