{% extends "base.html" %} {# 关键修复: 添加 with context #} {% import "macros.html" as macros with context %} {% block content %}
🔍 搜索结果: "{{ data.query }}" 共 {{ data.count }} 条
{% for item in data.results %}
{{ macros.item_slot({'imagePath': item.imagePath, 'name': item.name, 'frameCount': item.frameCount}, show_name=False) }}
{{ item.name }} ID: {{ item.id }} | Mod: {{ item.modName }}
{% if item.matchQuality == 0 %} ★ 精确匹配 {% endif %}
{% endfor %}
{% endblock %}