{% extends "base.html" %} {% block title %}评分详情 - {{ exam.title }} - FlashExam{% endblock %} {% block content %}
主观题评分管理
正在加载题目数据...
| 学生 | 学生答案 | 评分状态 | 分数 | 操作 |
|---|---|---|---|---|
|
{{ question.student_name }} ID: {{ question.student_id }} |
{% if question.student_answer %}
{{ question.student_answer|truncate(150) }}
{% if question.student_answer|length > 150 %}
{% endif %} {% else %} 未作答 {% endif %} |
{% if question.is_ai_graded %} AI已评分 {% elif question.is_manually_graded %} 手动已评分 {% else %} 未评分 {% endif %} | {% if question.score is not none %} {{ "%.1f"|format(question.score) }} {% else %} 0.0 {% endif %} / {{ question.max_score }} |
|