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

Recherche de documents

{% if documents.items %}
{% for document in documents.items %}
{% if document.file_type in FILE_TYPE_ICONS %} {{ document.file_type }} {% else %} {% endif %}

{{ highlight_keywords(document.title, query)|safe }}

{{ highlight_keywords(document.description|default('Aucune description'), query)|safe }}

{% if document.found_keywords and 'Contenu' in document.found_keywords and document.content_snippet_highlighted %}
Extrait du contenu :

{{ document.content_snippet_highlighted|safe }}

{% endif %} {% if document.found_keywords %}
Trouvé dans :
    {% for location in document.found_keywords %}
  • {{ location }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% if documents.pages > 1 %} {% endif %} {% else %}
Aucun document trouvé.
{% endif %}
{% endblock %}