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

Create link

Filter links

Relationships

{{ pagination.total }} link(s)
{% 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 %}
No links yet

Create a relationship between two documents.

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