{% extends "base.html" %} {% load static from staticfiles %} {% block content %} {% if rowcount %} New search (reset query) {% if error_messages %}
Searched for {{ rowcount }} entries with the following search strategies:
Exact match of the whole phrase
{% if results %}All words found exact in this order and without other words in between
Results for {{ found }} entries of {{ rowcount }} searched entries
Query | Results | {% for result, values in results.items %}
---|---|
{{ result }} | {{ values.count }} |
No results
{% endif %}All words found in document in exactly this order but some (max 10) words in between
{% if results_near %}Results for {{ found_near }} entries of {{ rowcount }} searched entries
Query | Results | Best score | {% for result, values in results_near.items %}
---|---|---|
{{ result }} | {{ values.count }} | {{ values.maxscore }} |
No results
{% endif %}Maybe matching (all words found in document but not the phrase in exactly this order)
{% if results_and %}Results for {{ found_and }} entries of {{ rowcount }} searched entries
Query | Results | Best score | {% for result, values in results_and.items %}
---|---|---|
{{ result }} | {{ values.count }} | {{ values.maxscore }} |
No results
{% endif %}Similar words all found in document. Sort for descending score to see the most similar first.
Results for {{ found_similar_and }} entries of {{ rowcount }} searched entries
Query | Results | Best score | {% for result, values in results_similar_and.items %}
---|---|---|
{{ result }} | {{ values.count }} | {{ values.maxscore }} |
No results
{% endif %}Some words found in document. Sort for descending score to see the most similar first.
Results for {{ found_or }} entries of {{ rowcount }} searched entries
Query | Results | Best score | {% for result, values in results_or.items %}
---|---|---|
{{ result }} | {{ values.count }} | {{ values.maxscore }} |
No results
{% endif %}Some words found in document, some of them only similar. Sort for descending score to see the most similar first.
Results for {{ found_similar_or }} entries of {{ rowcount }} searched entries
Query | Results | Best score | {% for result, values in results_similar_or.items %}
---|---|---|
{{ result }} | {{ values.count }} | {{ values.maxscore }} |
No results
{% endif %}Check for each entry if there are search results
{% endblock content %}