{% extends "base.html" %} {% block title %}停课记录 - 学生课程管理系统{% endblock %} {% block content %}

停课保号记录

申请停课 {% if current_user.has_permission('stop_export') %} 导出{% endif %}
{% for r in records %} {% endfor %} {% if not records %} {% endif %}
ID学员课程开始日期结束日期状态原因操作
{{ r.id }} {{ r.student.name }} {{ r.course.name }} {{ r.start_date }} {{ r.end_date }} {% if r.status == 1 %}停课中 {% elif r.status == 2 %}已复课 {% else %}已取消{% endif %} {{ r.reason or '-' }} {% if r.status == 1 %} 复课 {% endif %}
暂无停课记录
{% endblock %}