{{ msg }}
{% endif %} {% if error %}{{ error }}
{% endif %}用户列表
+ 新增用户| ID | 用户名 | 注册时间 | 最近登录 | 状态 | 帖子 | 评论 | 举报 | 未读通知 | 操作 |
|---|---|---|---|---|---|---|---|---|---|
| #{{ u.id }} | {{ u.username }} | {{ u.created_at.strftime('%Y-%m-%d %H:%M') if u.created_at else '—' }} | {{ u.last_login_at.strftime('%Y-%m-%d %H:%M') if u.last_login_at else '—' }} |
{% if u.is_banned %}
封禁
{{ u.banned_reason or '管理员封禁' }}
{% if u.banned_at %}
封禁时间:{{ u.banned_at.strftime('%Y-%m-%d %H:%M') }}
{% endif %}
{% else %}
正常
{% endif %}
|
{{ post_count_map.get(u.id, 0) }} | {{ comment_count_map.get(u.id, 0) }} | {{ report_count_map.get(u.id, 0) }} | {{ unread_notification_count_map.get(u.id, 0) }} | 编辑 {% if u.is_banned %} {% else %} {% endif %} |
| 暂无用户。 | |||||||||