blob: 7b286fd3bfe742d1ae2c7fb7e83a225ecd2b965d (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
{% set release = entity %}
{% set entity_view = "{{ direction }}-refs" %}
{% set entity_type = "release" %}
{% import "entity_macros.html" as entity_macros %}
{% extends "entity_base.html" %}
{% macro pagination_row(hits) %}
{% if hits.offset %}
<a href="?offset={{ hits.offset - hits.limit }}">« prev</a>
{% endif %}
Showing {{ hits.offset + 1 }} - {{ hits.offset + hits.count_returned }} of {{ hits.count_total}} references (in {{ hits.query_wall_time_ms }}ms)
{% if hits.count_total != hits.count_returned and hits.offset + hits.limit < hits.count_total %}
<a href="?offset={{ hits.offset + hits.limit }}">next »</a>
{% endif %}
{% endmacro %}
{% block entity_main %}
{% if direction == "inbound" %}
<h3>Referenced By</h3>
<i>Citations to this release by other works.</i>
{% elif direction == "outbound" %}
<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 enriched_refs %}
<table class="ui table">
<thead>
<tr><th colspan="3">
{{ pagination_row(hits) }}
</thead>
<tbody>
{% for row in enriched_refs %}
{% set release = row.release %}
<tr><td class="collapsing left aligned top aligned">
{# TODO: ref_locator? #}
{% if direction == "outbound" %}
{% if row.ref.ref_key %}
<code>[{{ row.ref.ref_key }}]</code><br>
{% endif %}
{% endif %}
<b>{{ row.ref.match_status }}</b><br>
{% if row.ref.match_provenance %}
via {{ row.ref.match_provenance }}
{% endif %}
<td class="">
{% if release %}
{{ entity_macros.release_summary(release) }}
{% elif row.ref.target_unstructured %}
<code>{{ row.ref.target_unstructured }}</code>
{% else %}
<i>blank</i>
{% endif %}
<td class="center aligned">
{% if row.access %}
{% for access in row.access %}
<a href="{{ access.access_url}}" class="ui tiny green active button">{{ access.access_type.name }}</a><br>
{% endfor %}
{% elif row.ref.target_unstructured %}
<form class="ui form" id="reference_match" method="POST" action="/reference/match">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
<input type="hidden" name="raw_citation" value="{{ row.ref.target_unstructured }}">
<button class="ui tiny primary submit button" type="submit" name="submit_type" value="parse">
parse
</button>
</form>
{% endif %}
{# TODO: include these as access options instead #}
{% if row.ref.target_openlibrary_work %}
<a href="https://openlibrary.org/work/{{ row.ref.target_openlibrary_work }}" class="ui tiny green active button">openlibrary.org</a>
{% endif %}
{% if row.ref.target_url %}
<a href="{{ ref.target_url | safe }}" class="ui tiny green active button">web</a>
<br><a href="https://web.archive.org/web/*/{{ row.ref.target_url | safe }}" class="ui tiny green active button">wayback (?)</a>
{% endif %}
{% endfor %}
</tbody>
{% if hits.count_total != hits.count_returned %}
<tfoot>
<tr><th colspan="3">
{{ pagination_row(hits) }}
</tfoot>
{% endif %}
</table>
{% else %}
<br><br><p><b>None found</b>
{% endif %}
{% endblock %}
|