{% extends 'grades/base.html' %} {% block title %}学生管理{% endblock %} {% block breadcrumb %}{% endblock %} {% block content %}

学生管理

添加学生
重置
{% for s in students %} {% empty %} {% endfor %}
#学号姓名班级专业关联账号操作
{{ forloop.counter }} {{ s.student_id }} {{ s.name }} {{ s.class_name|default:"-" }} {{ s.major|default:"-" }} {% if s.user %} {{ s.user.username }} {% else %} 未关联 {% endif %}
{% csrf_token %}
暂无学生数据
共 {{ students|length }} 条记录
{% endblock %}