{% extends 'base.html' %} {% block title %}用户管理{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

用户管理

新建用户
{% if q %} {% endif %}
{% for user in pagination.items %} {% else %} {% endfor %}
ID用户名邮箱角色 状态注册时间最后登录操作
{{ user.id }}
{{ user.username[0].upper() }}
{{ user.username }} {% if user.id == current_user.id %} {% endif %}
{{ user.email }} {{ '管理员' if user.is_admin else '普通用户' }} {{ '正常' if user.is_active else '已禁用' }} {{ user.created_at | datetime_fmt }} {{ user.last_login | datetime_fmt if user.last_login else '—' }}
{% if user.id != current_user.id %}
{{ csrf_token_input() }}
{% endif %}
暂无用户
{% if pagination.pages > 1 %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}