mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 17:26:26 +01:00
search: Add message when no results
This commit is contained in:
parent
3c018bc336
commit
566caac0a5
@ -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 %}
|
Loading…
Reference in New Issue
Block a user