{% extends 'base.html' %} {% block content %}

{% block title %}Résultats de la recherche "{{ query }}"{% endblock %}

{% if partitions|length != 0 %}

Résultats dans la bibliothèque locale

{% for partition in partitions %}
{{ partition["name"] }}
{{ partition["author"] }}
{% if partition["has_attachment"] %}
📎
{% endif %}
{% endfor %}
{% endif %} {% if google_results|length != 0 %}

Résultats de la recherche en ligne

{% for partition in google_results %}
{{ partition["name"] }}
{% endfor %}
{% endif %} {% if google_results|length == 0 and partitions|length == 0 %} Aucun résultat. Essayez d'augmenter le nombre de recherches en ligne ou d'affiner votre recherche. {% endif %} {% endblock %}