summaryrefslogtreecommitdiffstats
path: root/python/fatcat/templates/creator_view.html
blob: 210242aabbc8495963bac80f468af95eabee926b (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
{% extends "base.html" %}
{% block body %}

<h1>{{ creator.display_name }}</h1>

<p><b>Given ("first") name:</b> {{ creator.given_name}}
<p><b>Sur ("family"/"last") name:</b> {{ creator.surname }}
<p><b>ORCID<sup><a href="https://en.wikipedia.org/wiki/Orcid">?</a></sup></b>:
{% if creator.orcid != None %}
    <a href="https://orcid.org/{{creator.orcid}}"><code>{{ creator.orcid }}</code></a>
{% else %}
    unknown
{% endif %}
<p><b>fatcat Creator Identifier:</b> <code>{{ creator.ident }}</code> (revision #{{ creator.revision }}, {{ creator.state }})
{% if creator.extra != None %}
<p><b>Additional Metadata (raw JSON):</b>
<pre>{{ creator.extra }}</pre>
{% endif %}

<!--
Raw JSON Object:
{{ creator }}
-->

{% endblock %}