{% extends "base.html" %} {% load render_bundle from webpack_loader %} {% load static semanticui humanize %} {% block js %} {% if object.has_fulltext %} {% render_bundle 'searchWithin' 'js' %} {% endif %} {% endblock %} {% block page-subtitle %}Archive ยท {{ object.title }} {% endblock %} {% block metadata %} {% endblock %} {% block head_extras %} {% endblock %} {% block page-context-id %}digitized-work{% endblock %} {% block page_nav %} {% include 'snippets/nav.html' with style="archive" active="archive" %} {% endblock %} {% block content %}
{% if object.item_type != object.FULL %}
{% endif %}

{{ object.title }}

{% if object.item_type == object.FULL %} {# unapi metadata only available for full works #} {% endif %} {% if object.subtitle %} {% endif %} {% if object.book_journal %} {% endif %} {% if object.pub_date %} {% endif %} {% if object.author %} {% endif %} {% if object.publisher %} {% endif %} {% if object.pub_place %} {% endif %} {% if object.page_count %} {% endif %} {% if object.pages_orig %} {% endif %} {% if object.collections.exists %} {% endif %} {% if object.source_url %} {% endif %} {% if object.public_notes %} {% endif %} {% if user.is_authenticated %} {% if object.notes %} {% endif %} {% endif %}
Secondary Title {{ object.subtitle }}
{% if object.item_type == object.ARTICLE %}Journal{% elif object.item_type == object.EXCERPT %}Book{% endif %} Title {{ object.book_journal }}
Publication Date {{ object.pub_date }}
Author {{ object.author }}
Publisher {{ object.publisher }}
City {{ object.pub_place }}
Page count {{ object.page_count }}
Pages {{ object.pages_orig }}
PPA Collection{{ object.collections.count|pluralize }} {% for collection in object.collections.all %} {% endfor %}
Note on edition {{ object.public_notes }}
Curation notes {{ object.notes }}
Added {{ object.added|date:"d M Y" }}
Last Updated {{ object.updated|date:"d M Y" }}
{# search within a volume currently only supported for hathi content #} {% if object.has_fulltext %}
text search fields
{% render_field search_form.query %}
{% include 'archive/snippets/jump_top.html' with anchor='digitized-work' %}
{# display matching pages with highlighted text if there is a search active #} {% include 'archive/snippets/results_within_list.html' %} {% endif %} {% endblock %}