{% extends "base.html" %} {% load scoped_tags %} {% block title %}Search{% endblock %} {% block page_title %}Search{% endblock %} {% block page_subtitle %}Full-text search across all indexed objects (Extension A6){% endblock %} {% block layer_indicator %}A6 Search{% endblock %} {% block content %} {# Search Bar #}
{# Results #} {% if query %}
{{ results|length }} result{{ results|length|pluralize }} for "{{ query }}"
{% if results %}
{% for hit in results %}
{{ hit.name|default:"Untitled" }} {{ hit.object_type|default:"object" }}
{% if hit.description %}

{{ hit.description|truncatewords:25 }}

{% endif %}
{{ hit.object_id|truncate_id }} {% if hit.owner_id %} Owner: {{ hit.owner_id|truncate_id }} {% endif %}
{% if hit.score %}
Score

{{ hit.score }}

{% endif %}
{% endfor %}
{% else %} {% include "components/_empty_state.html" with title="No results" message="No objects matched your search. Try different keywords or check that objects have been indexed." %} {% endif %} {% else %}
🔍

Search your platform

Enter a query above to find services, objects, and other indexed resources.

{% endif %} {% endblock %}