Changed 'no results' text in search page

This commit is contained in:
Simon 2018-07-10 21:09:21 -04:00
parent 1ee1c3c35d
commit 2b83698292
2 changed files with 10 additions and 1 deletions

View File

@ -8,6 +8,7 @@
<div class="card-header">Downloads</div> <div class="card-header">Downloads</div>
<div class="card-body"> <div class="card-body">
<p>Please let me know if you used the database in a project!</p>
<p>The entire database is exported to CSV regularly</p> <p>The entire database is exported to CSV regularly</p>
<table class="table table-striped"> <table class="table table-striped">

View File

@ -168,7 +168,15 @@
</div> </div>
{% else %} {% else %}
<div class="card"> <div class="card">
<div class="card-body">No results</div> <div class="card-body">
<p>No results.</p>
<p>For better results:</p>
<ul>
<li>Try checking the 'Match any word' box for a broader search.</li>
<li>Make sure you don't include the file extension in your query (Use the appropriate field to filter file types)</li>
</ul>
</div>
</div> </div>
{% endif %} {% endif %}