{% extends "exam/base.html" %} {% block title %}考试成绩 - {{ record.exam.title }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
👤 {{ user_name }} 返回首页

考试结果

{{ record.exam.title }}
{{ record.score }} 总分
{% if record.is_pass %} 🎉 恭喜,考试通过! {% else %} 😔 未通过,请重新学习 {% endif %}
及格分数线:{{ record.exam.pass_score }} 分  |  您的得分:{{ record.score }} 分
交卷时间:{{ record.submitted_at|date:"Y-m-d H:i" }}
答题详情
{% for ans in answers %}
{{ forloop.counter }}. [{{ ans.question.get_q_type_display }}] {% if ans.is_correct %}✅ 正确{% else %}❌ 错误{% endif %} ({{ ans.question.score }}分)
{{ ans.question.content }}
您的答案:{{ ans.user_answer|default:"未作答" }} {% if not ans.is_correct %} 正确答案:{{ ans.question.correct_answer }} {% endif %}
{% endfor %}
{% endblock %}