{% extends "base.html" %} {% block title %}知识评测{% endblock %} {% block content %}
{% for bm in benchmarks %}
{{ bm.id }}

{{ bm.name }}

{{ bm.category | replace('_', ' ') | title }}

{{ bm.description }}

{{ bm.question_count }} 题 {% if bm.answered > 0 %} · 已答 {{ bm.answered }}/{{ bm.question_count }} · 正确率 {{ bm.accuracy }}% {% endif %}
{% if bm.answered == bm.question_count %}查看结果{% elif bm.answered > 0 %}继续答题{% else %}开始答题{% endif %}
{% endfor %} {% if not benchmarks %}
暂无知识评测题目
{% endif %}
{% endblock %}