{% extends "base.html" %} {% block nav_dashboard %}nav-item-active{% endblock %} {% block page_title %}仪表盘{% endblock %} {% block content %}

系统状态

插件状态: {{ '已启用' if plugin_status.enabled else '已禁用' }}
QQ连接: {{ '已连接' if websocket_status.connected else '断开连接' }}
在线玩家: {{ online_players_count }}
绑定用户: {{ bound_users_count }}

快速操作

消息统计

今日消息: 0
昨日消息: 0
周平均: 0

历史消息

可直接发送聊天消息到游戏/QQ群,或输入控制台命令(如 listsay hello)。
{% if recent_messages and recent_messages|length > 0 %} {% for msg in recent_messages %}
{{ msg.sender[0]|upper }}
{{ msg.sender }} {{ msg.timestamp|datetime('zh-CN') }}
{{ msg.content }}
{% endfor %} {% else %}
暂无消息
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}