{% extends "base.html" %} {% block title %}题目管理 - FlashExam{% endblock %} {% block head %} {% endblock %} {% block content %}

题目管理

创建和管理考试题目,支持多种题型

{{ questions|length }}

题目总数

{{ total_score or 0 }}

总分值

题型分布
{% if type_stats %}
{% for q_type, count in type_stats.items() %}
{{ q_type }} {{ count }}
{% endfor %}
{% else %}

暂无题目数据

{% endif %}
题目列表 总计: {{ questions|length }}
已选择: 0
{% if questions %}
{% for question in questions %} {% endfor %}
ID 题型 题目内容 分值 科目 导入批次 操作
{{ question.id }} {{ question.question_type }}
{{ question.question_text[:100] }}{% if question.question_text|length > 100 %}...{% endif %}
{{ question.score or 5 }}分 {{ question.subject or '未设置' }} {% if question.import_batch %} {{ question.import_batch }} {% else %} - {% endif %}

{{ questions|length }} 道题目

{% else %}

暂无题目数据

点击"导入题目"或"添加题目"开始添加题目

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}