{% extends "base.html" %} {% block title %}用户管理 - 图书管理系统{% endblock %} {% block head %} {% endblock %} {% block content %}
重置
{% for user in pagination.items %} {% else %} {% endfor %}
ID 用户名 昵称 邮箱 手机号 角色 状态 注册时间 操作
{{ user.id }} {{ user.username }} {{ user.nickname or '-' }} {{ user.email or '-' }} {{ user.phone or '-' }} {% for role in roles %} {% if role.id == user.role_id %} {{ role.role_name }} {% endif %} {% endfor %} {{ '正常' if user.status == 1 else '禁用' }} {{ user.created_at }} {% if user.id != session.get('user_id') %} {% if user.status == 1 %} {% else %} {% endif %} {% else %} (当前用户) {% endif %}
暂无用户数据
{% if pagination.pages > 1 %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}