{% extends "base.html" %} {% block title %}学生考试进度 - {{ student.name }}{% endblock %} {% block content %}
学生正在答题中,以下为已保存的答案
考试名称:{{ exam.title }}
学生姓名:{{ student.name }}
学号:{{ student.student_id }}
开始时间:{{ progress.start_time[:16] if progress.start_time else '-' }}
最后保存:{{ progress.last_save_time[:16] if progress.last_save_time else '-' }}
已用时间:{{ "%.1f"|format(progress.elapsed_minutes or 0) }} 分钟
{{ answered_count }} 题已答 {{ total_questions - answered_count }} 题未答
题干:
{{ question.question_text }}
{% if question.question_type == 'choice' and question.options %}选项:
学生答案: {% if question.student_answer %} {% if question.student_answer|lower in ['true', '对', 't', '1'] %} 对 {% else %} 错 {% endif %} {% else %} 未作答 {% endif %}
{% endif %}学生答案:
{% if question.student_answer %}{{ question.student_answer }}
{% else %}未作答
{% endif %}正确答案:
{{ question.correct_answer }}
暂无题目