{% extends 'admin/master.html' %} {% block body %}
{% if users %}
{% for user in users %} {% endfor %}
ID 用户名 邮箱 收藏统计 注册时间 最后登录 状态 操作
{{ user.id }} {% if user.email %} {% 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 pagination.pages > 1 %}
共 {{ pagination.total }} 个用户,第 {{ pagination.page }} / {{ pagination.pages }} 页
{% endif %} {% else %}
person_off

{% if search %}未找到匹配的用户{% else %}暂无注册用户{% endif %}

{% endif %}
{% endblock %}