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

考试管理

创建和管理考试,组织考试流程

{{ exams|length }}

考试总数

考试状态分布
{% if exams %}
进行中 {{ exams|selectattr('is_active')|list|length }}
已结束 {{ (exams|length) - (exams|selectattr('is_active')|list|length) }}
总题目数 {% set total_questions = exams|sum(attribute='total_questions') %}{{ total_questions or 0 }}
平均时长 {% if exams %}{% set avg_duration = (exams|sum(attribute='duration_minutes') / exams|length) %}{{ avg_duration|round|int }}{% else %}0{% endif %}分钟
{% else %}

暂无考试数据

{% endif %}
考试列表
已选择: 0
{% if exams %}
{% for exam in exams %} {% endfor %}
ID 考试名称 描述 时长 题目数 状态 创建时间 操作
{{ exam.id }}
{{ exam.title }}
{{ exam.description[:50] }}{% if exam.description and exam.description|length > 50 %}...{% endif %}
{{ exam.duration_minutes }}分钟 {{ exam.total_questions }}题 {% if exam.is_active %} 进行中 {% else %} 已结束 {% endif %} {% if exam.created_at %} {% if exam.created_at.strftime is defined %} {{ exam.created_at.strftime('%m-%d %H:%M') }} {% else %} {{ exam.created_at }} {% endif %} {% else %} 未知 {% endif %}
{% else %}

暂无考试数据

点击"创建考试"开始创建第一个考试

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