{% extends "base.html.j2" %} {% import "try-it-macros.html.j2" as try_it %} {% block title %}DIDs{% endblock %} {% block description %}Distinct DIDs with records in {{ query.source }} linking to {{ query.subject }} {% endblock %} {% block content %} {% call try_it::get_backlink_dids(query.subject, query.source) %}

Distinct DIDs with links to {{ query.subject }} from {{ query.source }} {% if let Some(browseable_uri) = query.subject|to_browseable %} browse record {% endif %}

{{ total|human_number }} distinct DIDs with links to {{ query.subject }} from {{ query.source }}

DIDs, most recent first:

{% for did in linking_dids %}
DID: {{ did.0 }}
  -> see links to this DID
  -> browse this DID record
{% endfor %} {% if let Some(c) = cursor %}
{% else %} {% endif %}
Raw JSON response
{{ self|tojson }}
{% endblock %}