From 566caac0a5cb1c85d36b104650d811a28f5b44c2 Mon Sep 17 00:00:00 2001 From: augustin64 Date: Sat, 24 Jun 2023 16:05:26 +0200 Subject: [PATCH] search: Add message when no results --- partitioncloud/templates/albums/search.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/partitioncloud/templates/albums/search.html b/partitioncloud/templates/albums/search.html index 1bdb79f..6b40213 100644 --- a/partitioncloud/templates/albums/search.html +++ b/partitioncloud/templates/albums/search.html @@ -1,8 +1,8 @@ {% extends 'base.html' %} -{% block title %}Résultats de la recherche "{{ query }}"{% endblock %} {% block content %} +

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

{% if partitions|length != 0 %}

Résultats dans la bibliothèque locale

@@ -58,4 +58,7 @@ {% 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 %} \ No newline at end of file