{% set release = entity %} {% set entity_view = "{{ direction }}-refs" %} {% set entity_type = "release" %} {% import "entity_macros.html" as entity_macros %} {% extends "entity_base.html" %} {% block entity_main %} {% if direction == "inbound" %}

Inbound Matched References

Other releases citing this one {% elif direction == "outbound" %}

Outbound Matched References

This release citing other releases {% endif %}

Found {{ hits.count_total }} references in {{ hits.query_wall_time_ms }}ms. {% if hits.count_total != hits.count_returned %} Showing {{ hits.offset + 1 }} - {{ hits.offset + hits.count_returned }} {% if hits.offset + hits.limit < hits.count_total %}  next... {% endif %} {% endif %} {% for ref in enriched_refs %} {% set release = ref.release %}
{% if direction == "outbound" %} {% if ref.ref.ref_key %} [{{ ref.ref.ref_key }}] {% endif %} {% endif %}
{{ ref.ref.match_status }} {% if ref.ref.match_provenance %}
{{ ref.ref.match_provenance }} {% endif %}
{% if release %} {% entity_macros.release_summary(release) %} {% elif ref.ref.target_unstructured %} {{ ref.ref.target_unstructured }} {% else %} blank {% endif %} {% if ref.access %} {{ ref.access[0].access_type.name }} {% endif %} {% endfor %}
{% endblock %}