aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat/templates/creator_view.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-07-25 17:24:49 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-07-25 17:24:49 -0700
commit376763ce13c86d78f5e30c5660bb3b767a0c44fc (patch)
tree8f31e97202ff21cc7e51f71cdb314d9e94a3233a /python/fatcat/templates/creator_view.html
parent829765848a57190a7bb7fd4ff985f49d61055e97 (diff)
downloadfatcat-376763ce13c86d78f5e30c5660bb3b767a0c44fc.tar.gz
fatcat-376763ce13c86d78f5e30c5660bb3b767a0c44fc.zip
webface updaes for newer schema (and abstracts)
Diffstat (limited to 'python/fatcat/templates/creator_view.html')
-rw-r--r--python/fatcat/templates/creator_view.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/fatcat/templates/creator_view.html b/python/fatcat/templates/creator_view.html
index 3047a909..25a4f61a 100644
--- a/python/fatcat/templates/creator_view.html
+++ b/python/fatcat/templates/creator_view.html
@@ -18,6 +18,9 @@
<p><b>Sur ("family"/"last") name:</b>
{% if creator.surname != None %}{{ creator.surname }}{% else %}<i>None or unknown</i>{% endif %}
+{% if creator.wikidata_qid != None %}
+<br><b>Wikidata Entity:</b> <a href="https://www.wikidata.org/wiki/{{ creator.wikidata_qid }}">&nbsp;<code>{{ creator.wikidata_qid }}</code></a>
+{% endif %}
{% if creator.extra != None %}
<h3>Extra Metadata (raw JSON)</h3>
{% for (key, value) in creator.extra.items() %}