{% extends 'admin/master.html' %} {% block body %}
管理平台注册用户
| ID | 用户名 | 邮箱 | 收藏统计 | 注册时间 | 最后登录 | 状态 | 操作 |
|---|---|---|---|---|---|---|---|
| {{ user.id }} |
{% if user.email %}
{{ user.email }}
{% if user.email_verified %}
verified
{% endif %}
{% else %}
未设置
{% endif %}
|
bookmark
{{ user_stats[user.id].collections_count }}
folder
{{ user_stats[user.id].folders_count }}
|
{{ user.created_at.strftime('%Y-%m-%d %H:%M') if user.created_at else '-' }} | {{ user.last_login.strftime('%Y-%m-%d %H:%M') if user.last_login else '从未登录' }} | {% if user.is_active %} 正常 {% else %} 已禁用 {% endif %} | 查看详情 |
{% if search %}未找到匹配的用户{% else %}暂无注册用户{% endif %}