{% extends "base.html" %} {% block fullbody %}

work {{ work.ident }}

{% if work.extra != None %}

Extra Metadata (raw JSON)

{% for (key, value) in work.extra.items() %} {{ key }}: {{ value }}
{% endfor %} {% endif %}

A "work" is just a linking identifier between a set of releases. For example, a pre-print and a published article may contain small differences, but still reference the same underlying "work".
{% if releases != [] %}

{% else %}

There are no known releases associated with this work. {% endif %}

Work Type: {% if work.work_type != None %}  {{ work.work_type }} {% else %} unkonwn {% endif %}
Fatcat Bits

State is "{{ work.state }}". Revision:
{{ work.revision }}
As JSON object via API

{% endblock %}