{% extends "base.html" %} {% block title %}Search{% if query %}: {{ query }}{% endif %} - KenobiX Explorer{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

Search

{% if query %}

{% if total_results == 0 %} No results found for "{{ query }}" {% elif total_results == 1 %} Found 1 result for "{{ query }}" {% else %} Found {{ total_results }} results for "{{ query }}" {% endif %} {% if selected_collection %} in {{ selected_collection }} {% endif %}

{% if results %} {% for coll_name, coll_results in results.items() %}

{{ coll_name }} ({{ coll_results | length }} result{% if coll_results | length != 1 %}s{% endif %})

{% for result in coll_results %} {% endfor %}
ID Match
{{ result.doc_id }} {{ result.snippet }} View
{% endfor %} {% endif %} {% else %}

Enter a search query to find documents across all collections.

Tips:

{% endif %}

← Back to overview

{% endblock %}