{% extends "base.html" %} {% block title %}概览 · kb-mcp admin{% endblock %} {% block content %} {% if stats.conflicts and stats.conflicts > 0 %}
⚠️ Git 同步冲突: 有 {{ stats.conflicts }} 个文档包含未解决的合并冲突标记。
查看冲突
{% endif %}
有效文档{{ stats.documents }}
已删除文档{{ stats.deleted_documents }}
类型数{{ stats.types }}
链接数{{ stats.links }}
孤立文档{{ stats.orphan_documents }}
向量数{{ stats.vectors }}

最近更新

健康检查

{{ "健康" if doctor_report.ok else "需要关注" }}
{% for check in doctor_report.checks %}
{{ check.name }}
{{ check.detail }}
{{ "正常" if check.ok else "异常" }}
{% endfor %}

类型分布

{% for type_name, count in type_counts %}
{{ type_name }}
{{ count }}
{% else %}
暂无类型

创建文档后将显示类型分布。

{% endfor %}

热门标签

{% for tag, count in tag_counts %} {{ tag }} {{ count }} {% else %}
暂无标签

为文档添加标签后将显示在这里。

{% endfor %}
{% endblock %}