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

{% block title %}{{ _('Résultats de la recherche "%(query)s', query=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 %}