{% extends "base.html" %} {% block title %}频道配置 - 智队中枢{% endblock %} {% block content %}
{# 页面标题 #}

频道配置

{# 频道列表 #}
{% for config in configs %} {% else %} {% endfor %}
名称 Gateway URL 状态 最后连接 操作
{{ config.name }} {{ config.gateway_url }} {% if config.status == 'online' %} 在线 {% else %} 离线 {% endif %} {{ config.last_connected.strftime('%Y-%m-%d %H:%M') if config.last_connected else '从未连接' }}
暂无配置,点击下方按钮新增
{# 新增/编辑配置模态框 #} {% endblock %}