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

考试管理

{% for exam in exams %} {% endfor %}
ID 名称 科目 考试日期 状态 创建时间 操作
{{ exam.id }} {{ exam.name }} {{ exam.subject }} {{ exam.exam_date }} {% if exam.status == 'active' %} 进行中 {% else %} 已停止 {% endif %} {{ exam.created_at }} {% if exam.status == 'active' %}
{% else %} 无操作 {% endif %}
{% endblock %}