{% extends "base.html" %} {% block title %}设置中心 - AgomTradePro{% endblock %} {% block content %}

{{ page_title }}

{{ page_subtitle }}

API 文档 文档中心
{% if featured_items %}

常用入口

统一入口,不再分散找页面
{% for item in featured_items %}
{{ item.name }} {{ item.status }}
{{ item.description }}
{% for key, value in item.summary.items %} {{ key }}: {{ value }} {% endfor %}
{% endfor %}
{% endif %}
入口规则已收口: 这里是统一设置入口; `账户设置` 和 `系统设置` 现在是具体编辑页, `财经数据源配置` 负责录入 Token / URL, 运行状态和联调测试也统一收口到 `/data-center/monitor/`。
{% for section in sections %}

{{ section.title }}

{{ section.items|length }} 项
{% for item in section.items %}
{{ item.name }}
{{ item.description }}
{{ item.status }}
模块 {{ item.module }} 权限 {{ item.permission }} {% if item.frontend_url %}Frontend{% endif %} {% if item.api_url %}API{% endif %} {% if item.mcp_tools %}MCP{% endif %}
{% for key, value in item.summary.items %}
{{ key }}
{{ value }}
{% endfor %}
{% if item.mcp_tools %}
MCP 工具
{% for tool in item.mcp_tools %} {{ tool }} {% endfor %}
{% endif %}
{% if item.frontend_url %} 查看{% if item.supports_edit %}/编辑{% endif %} {% endif %} {% if item.api_url %} API {% endif %} {{ item.docs_ref }}
{% endfor %}
{% endfor %}
{% endblock %}