{% extends 'base.html' %} {% block title %}Résultats de la recherche "{{ query }}"{% endblock %} {% block content %} {% if partitions|length != 0 %}

Résultats dans la bibliothèque locale

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

Résultats de la recherche en ligne

{% for partition in google_results %}
{{ partition["name"] }}
{% endfor %}
{% endif %} {% endblock %}