{% extends "base.html" %} {% block title %}编辑考试 - FlashExam{% endblock %} {% block content %}

编辑考试

编辑考试信息和题目内容,不影响全局题目管理

返回考试管理
考试基本信息

{{ questions|length }}

题目总数

{{ "%.1f"|format(questions|sum(attribute='score') or 0) }}

总分

{{ exam.duration_minutes }}

时长(分钟)

{{ '进行中' if exam.is_active else '已结束' }}

考试状态

考试题目列表
{% if questions %} {% for question in questions %}
第{{ loop.index }}题 {{ get_question_type_name(question.question_type) }} {{ question.score or 1 }}分
题目内容:
{{ question.question_text|safe }}
{% if question.question_type in ['choice'] %}
选项:
{% if question.option_a %}
A. {{ question.option_a }}
{% endif %} {% if question.option_b %}
B. {{ question.option_b }}
{% endif %} {% if question.option_c %}
C. {{ question.option_c }}
{% endif %} {% if question.option_d %}
D. {{ question.option_d }}
{% endif %}
{% elif question.question_type == 'judge' %}
正确答案:
{{ '正确' if question.correct_answer in ['true', 'True', '对', '是'] else '错误' }}
{% else %}
参考答案:
{{ question.correct_answer }}
{% endif %} {% if question.explanation %}
解析:
{{ question.explanation }}
{% endif %}
{% endfor %} {% else %}

该考试暂无题目

点击"添加新题目"或"添加现有题目"开始添加题目

{% endif %}
{% endblock %}