{% extends "layout.html" %} {% block content %}
| 用户ID | 昵称 | 金币 | 钓鱼次数 | 总重量 | 注册时间 | 最后登录 | 状态 | 操作 |
|---|---|---|---|---|---|---|---|---|
{{ user.user_id }}
|
{{ user.nickname or '未设置' }} | {{ user.coins }} | {{ user.total_fishing_count }} | {{ user.total_weight_caught }}g | {{ user.created_at.strftime('%Y-%m-%d %H:%M') if user.created_at else '未知' }} | {{ user.last_login_time.strftime('%Y-%m-%d %H:%M') if user.last_login_time else '从未' }} | {% if user.auto_fishing_enabled %} 自动钓鱼 {% else %} 手动 {% endif %} | 物品 |