{% extends "base.html" %} {% block title %}场景首页{% endblock %} {% block content %}
{% for scenario in scenarios %}

{{ scenario.name }}

{{ scenario.description }}

适用题型: {% if scenario.applicable_questions %} {{ scenario.applicable_questions|join:"、" }} {% else %} 暂未配置 {% endif %}

进入对话

{% empty %}
暂无可用场景,请检查 `configs/` 目录和 YAML 配置内容。
{% endfor %}
{% endblock %}