aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/container_lookup.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-06-05 15:56:52 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-06-05 15:56:52 -0700
commit388503d92ff8a1f26a0376cc42cefb077a1d6401 (patch)
treeb2329cb6951bfbc5f98a0663f2e4b7991a1949ca /python/fatcat_web/templates/container_lookup.html
parent805a8b1001754fb8397e539dbc15a6cfd65661f2 (diff)
downloadfatcat-388503d92ff8a1f26a0376cc42cefb077a1d6401.tar.gz
fatcat-388503d92ff8a1f26a0376cc42cefb077a1d6401.zip
more lookup views
Diffstat (limited to 'python/fatcat_web/templates/container_lookup.html')
-rw-r--r--python/fatcat_web/templates/container_lookup.html63
1 files changed, 63 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/container_lookup.html b/python/fatcat_web/templates/container_lookup.html
new file mode 100644
index 00000000..1848739a
--- /dev/null
+++ b/python/fatcat_web/templates/container_lookup.html
@@ -0,0 +1,63 @@
+{% extends "base.html" %}
+{% import "entity_macros.html" as entity_macros %}
+
+{% block body %}
+
+<h1>Lookup Container by Identifier</h1>
+
+{% if lookup_error == 400 %}
+<div class="ui error message">
+<div class="header">400: Syntax Error</div>
+<b>{{ lookup_key }}:{{ lookup_value }}</code></b> doesn't look right to us. See
+below for details.
+</div>
+{% elif lookup_error == 404 %}
+<div class="ui error message">
+<div class="header">404: Not Found</div>
+Couldn't find a container with that identifier (<b><code>{{ lookup_key }}:{{
+lookup_value }}</code></b>). If you think it should be in the catalog, you could
+search for an existing record missing that identifier, or create a new container
+entity.
+{% if lookup_key == "doi" %}
+<p>You can check if it is a registered ISSN-L by visiting:
+<b><a href="https://portal.issn.org/{{ lookup_value
+}}">https://portal.issn.org/{{ lookup_value }}</a></b>. If this is a valid
+electronic or print ISSN, but not the ISSN-L for the container, you need to use
+the indicated "linking" ISSN.
+{% elif lookup_key == "wikidata_qid" %}
+<p>You can check if it is a real Wikidata entity by visiting:
+<b><a href="https://www.wikidata.org/wiki/{{ lookup_value }}/">https://www.wikidata.org/wiki/{{ lookup_value }}/</a></b>
+{% endif %}
+</div>
+{% endif %}
+
+<div class="ui top attached segment">
+
+<h2>ISSN-L</h2>
+<p>The "linking" ISSN for a journal or other publication is one of the
+"print" or "electronic"
+<a href="https://en.wikipedia.org/wiki/International_Standard_Serial_Number#Linking_ISSN">International
+Standard Serial Numbers</a>, which has been selected to represent the resource
+in all media. It is usually the ISSN which was registered first, and defaults
+to the "print" ISSN number for a journal. Fatcat uses ISSN-L as the primary
+identifier for journals to reduce confusion and potential for duplication. The
+ISSN organization publicly publishes a mapping between linking and
+print/electronic ISSNs.
+{{ entity_macros.lookup_form("issnl", "1234-567X", lookup_key, lookup_value, lookup_error) }}
+<i>&nbsp; Must include the dash</i>
+
+</div>
+<div class="ui attached bottom segment">
+
+<h2>Wikidata QID</h2>
+<p><a href="https://en.wikipedia.org/wiki/Wikidata#Items">Wikidata</a> is the
+structured, machine-readable database that complements Wikipedia. Entities,
+which can include bibliographic entities like books and papers, are identified
+by a "QID". Fatcat also links container (journal) and creator (author) entities
+to Wikidata by QID. Anybody can edit Wikidata and create QIDs.
+{{ entity_macros.lookup_form("wikidata_qid", "Q94324", lookup_key, lookup_value, lookup_error) }}
+<i>&nbsp; Include the "Q" prefix.</i>
+
+</div>
+
+{% endblock %}