{% extends "base.html.j2" %} {% import "try-it-macros.html.j2" as try_it %} {% block title %}Links{% endblock %} {% block description %}All {{ query.collection }} records with links to {{ query.target }} at JSON path {{ query.path }}{% endblock %} {% block content %} {% call try_it::links(query.target, query.collection, query.path, query.did, query.limit) %}
{{ query.target }}
{% if let Some(browseable_uri) = query.target|to_browseable %}
browse record
{% endif %}
{{ total|human_number }} links from {{ query.collection }} at {{ query.path }}
/links/distinct-dids: /links/distinct-dids?target={{ query.target }}&collection={{ query.collection }}&path={{ query.path }}/links/all: /links/all?target={{ query.target }}DID: {{ record.did().0 }} (DID links)
Collection: {{ record.collection }}
RKey: {{ record.rkey }}
-> browse record
{% endfor %}
{% if let Some(c) = cursor %}
{% else %}
{% endif %}
{{ self|tojson }}