{% extends "base.html" %} {% block title %}主观题评分 - FlashExam{% endblock %} {% block content %}

主观题评分

AI自动评分 + 手动调整

待评分考试

{{ exams|length }}

主观题总数

{{ exams|sum(attribute='total_subjective') if exams else 0 }}

AI已评分

{{ exams|sum(attribute='ai_graded') if exams else 0 }}

手动调整

{{ exams|sum(attribute='manually_graded') if exams else 0 }}

需要评分的考试
{% if exams %}
{% for exam in exams %} {% endfor %}
考试名称 描述 主观题总数 AI评分 手动调整 未评分 覆盖率 操作
{{ exam.title }} {{ exam.description[:50] + '...' if exam.description and exam.description|length > 50 else exam.description or '无描述' }} {{ exam.total_subjective }} {{ exam.ai_graded }} {{ exam.manually_graded }} {{ exam.ungraded }}
{{ "%.1f"|format(exam.ai_coverage) }}%
详情 {% if exam.ungraded > 0 %} {% endif %}
{% else %}

暂无需要评分的考试

没有包含主观题的考试,或所有主观题都已完成评分。

创建考试
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}