{% extends "base.html" %} {% block content %}
{% if query and ai_available %}
{% if ai_activated %} AI 搜索已启用 {% else %} AI 智能搜索 {% endif %}
{% endif %} {% if searched %} {% if ai_error %}

{{ ai_error }}

{% endif %} {% if ai_activated and expanded_terms %}

AI 帮你扩展了:{{ expanded_terms | join('、') }}

{% endif %} {% if results %}

共找到 {{ results|length }} 条结果。

{% for result in results %}
{% if result.image_url %} {{ result.name }} {% endif %}

类型:{{ result.type }}

{{ result.name }}

定位:{{ result.path }}

{% if result.type == "Item" and result.is_container %}

容器:

{% endif %} {% if result.note %}

备注:{{ result.note }}

{% endif %}
{{ result.detail_label }} {% if result.secondary_url %} {{ result.secondary_label }} {% endif %}
{% endfor %}
{% else %}

没有找到匹配结果。

{% endif %} {% else %}

输入关键词后,可以跨 Box、Item、SubItem 进行搜索。

{% endif %} {% endblock %}