{% extends "base.html" %} {% block content %}
{% if query %}

{{ results|length }} result{{ 's' if results|length != 1 }} for "{{ query }}"

{% endif %} {% if results %}
{% for item in results %}
{{ item.type_label }} {{ item.name }} {% if item.context %} {{ item.context }} {% endif %} {% if item.status %} {{ item.status|replace('_', ' ') }} {% endif %}
{% endfor %}
{% elif query %}
🔍
No results found for "{{ query }}"
{% endif %} {% endblock %}