{% extends "exam/base.html" %} {% block title %}{{ exam.title }}{% endblock %} {% block content %}

{{ exam.title }}

共 {{ exam.question_count }} 题,满分 {{ exam.total_score }} 分,限时 {{ exam.time_limit }} 分钟
剩余时间: {{ time_limit }}:00
{% for q in questions %}
{{ forloop.counter }} {{ q.get_q_type_display }} ({{ q.score }}分)
{{ q.content }}
{% if q.options %} {% if q.q_type == 'single' %} {% for k, v in q.options.items %} {% endfor %} {% elif q.q_type == 'multi' %} {% for k, v in q.options.items %} {% endfor %} {% elif q.q_type == 'judge' %} {% for k, v in q.options.items %} {% endfor %} {% else %} {% endif %} {% else %}
⚠️ 此题目选项未设置,请联系管理员检查题库导入。
{% endif %}
{% endfor %}
请在上方框内手写签名
{% endblock %}