{% extends 'layout/base.html' %} {% block title %}学生管理 - SmartDSP考勤管理系统{% endblock %} {% block content %}

学生管理

添加学生
学生列表 (共 {{ pagination.total }} 人)
{% if students %}
{% for student in students %} {% endfor %}
学号 姓名 性别 年级 学院 导师 学位类型 状态 操作
{{ student.student_number }} {{ student.name }} {% if student.phone %}
{{ student.phone }} {% endif %}
{{ student.gender }} {{ student.grade }}级 {{ student.college or '-' }} {{ student.supervisor or '-' }} {% if student.degree_type %} {{ student.degree_type }} {% else %} - {% endif %} {% if student.status == '在读' %} 在读 {% else %} 毕业 {% endif %}
{% if pagination.pages > 1 %} {% endif %} {% else %}

暂无学生数据

添加第一个学生
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}