summaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/release_view_fuzzy_refs.html
blob: ffca0bc91c8d70526e0159ab32d6d7d70b939994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% set release = entity %}
{% set entity_view = "refs-" + direction %}
{% set entity_type = "release" %}
{% import "refs_macros.html" as refs_macros %}
{% extends "entity_base.html" %}


{% block entity_main %}

{% if direction == "in" %}
  <h3>Cited By</h3>
  <i>References to this release by other works.</i>
{% elif direction == "out" %}
  <h3>References</h3>
  <i>NOTE: currently batch computed and may include additional references sources, or be missing recent changes, compared to entity reference list.</i>
{% endif %}

{% if hits.result_refs %}
  {{ refs_macros.refs_table(hits, direction) }}
{% else %}
  <br><br><p><b>None found</b>
{% endif %}

{% endblock %}