{% extends "layout.html" %} {% block content %}

用户管理

用户列表
共 {{ pagination.total_count }} 个用户
{% for user in users %} {% endfor %}
用户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 %} 物品
{% if pagination.total_pages > 1 %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}