{% extends "base.html" %} {% block title %}链接 · kb-mcp admin{% endblock %} {% block content %}

创建链接

筛选链接

关系列表

{{ pagination.total }} 条链接
{% for link in links %}
{{ id_to_title.get(link.from_id, link.from_id) }} {{ id_to_title.get(link.to_id, link.to_id) }}
{{ link.rel }} {{ link.from_id }} → {{ link.to_id }} · {{ link.created_at.strftime("%Y-%m-%d %H:%M") }}
{% else %}
暂无链接

在两个文档之间创建关系链接。

{% endfor %}
{% if pagination.total_pages > 1 %} {% endif %}
{% endblock %}