{% extends "base.html" %} {% block content %}
{% if searched %} {% 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 %}