{% extends "base.html" %} {% block title %}学生答卷详情 - {{ student.name }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
考试名称: {{ exam.title }}
总分: {{ result.score }} / {{ exam.total_score }}
姓名: {{ student.name }}
学号: {{ student.student_id }}
题干:
{{ question.question_text }}
{% if question.question_type == 'choice' and question.options and question.options is mapping %}选项:
正确答案: {% if question.question_type == 'judge' %} {% if question.correct_answer|lower in ['true', 't', '1'] %}对{% elif question.correct_answer|lower in ['false', 'f', '0'] %}错{% else %}{{ question.correct_answer }}{% endif %} {% else %} {{ question.correct_answer }} {% endif %}