search: Add message when no results

This commit is contained in:
augustin64 2023-06-24 16:05:26 +02:00
parent 3c018bc336
commit 566caac0a5

View File

@ -1,8 +1,8 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% block title %}Résultats de la recherche "{{ query }}"{% endblock %}
{% block content %} {% block content %}
<h2>{% block title %}Résultats de la recherche "{{ query }}"{% endblock %}</h2>
{% if partitions|length != 0 %} {% if partitions|length != 0 %}
<h3>Résultats dans la bibliothèque locale</h3> <h3>Résultats dans la bibliothèque locale</h3>
<div id="partitions-grid"> <div id="partitions-grid">
@ -58,4 +58,7 @@
{% endfor %} {% endfor %}
</div> </div>
{% endif %} {% 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 %} {% endblock %}