{% extends "base.html" %} {% block title %}仪表盘 - 智队中枢{% endblock %} {% block content %}
{# 页面标题 #}

仪表盘

{# 统计卡片 #}
{# 在线 Agent #}

{{ stats.online_agents }}

在线 Agent

{# 活跃会话 #}

{{ stats.active_sessions }}

活跃会话

{# 今日消息 #}

{{ stats.today_messages }}

今日消息

{# 在线 Gateway #}

{{ stats.online_gateways }}

在线 Gateway

{# 最近会话 #}

最近会话

查看全部 →
{% for session in recent_sessions %} {% else %} {% endfor %}
用户 Agent 消息数 状态 最后活跃
{{ session.user.username }} {{ session.primary_agent.name if session.primary_agent else '-' }} {{ session.message_count }} {% if session.status == 'active' %} 活跃 {% elif session.status == 'paused' %} 暂停 {% else %} 关闭 {% endif %} {{ session.last_active_at.strftime('%Y-%m-%d %H:%M') if session.last_active_at else '-' }}
暂无会话数据
{% endblock %}