{% 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) %}

Links to {{ 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, most recent first:

{% for record in linking_records %}
DID:        {{ record.did().0 }} (DID links)
Collection: {{ record.collection }}
RKey:       {{ record.rkey }}
-> browse record
{% endfor %} {% if let Some(c) = cursor %}
{% else %} {% endif %}
Raw JSON response
{{ self|tojson }}
{% endblock %}