{% extends "base.html" %} {% block title %} 用户列表 {% endblock %} {% block content %}

用户列表

{% url "listuserurl" as thelistuserurl %} 用户列表 {% url "removesusersurl" as theremovesusersurl %} 批量删除 按导入批号删除

{{FilterHTML|safe}} {% for i in lPage %} {% endfor %}
账号 姓名 性别 学号 分组 状态 角色 导入批号 最后登录时间 操作
{{ i.username }} {{ i.nickname|default:"----" }} {{ i.sex|default:"----" }} {{ i.sid }} {{ i.classid }} {% if i.is_active %} 启用 {% else %} 禁用 {% endif %} {{ i.role|default:"----" }} {{ i.importid }} {{ i.last_login|date:"Y-m-d H:i:s" }} 编辑 删除
{% include "common/paginator.html" %} {% endblock %}