{% extends "base.html" %} {% load static i18n %} {% block content %}

{{volume.label}}

{% endblock content %} {% block viewer %}
Author: {{ volume.author }}
Publication Date: {{ volume.published_date }}
{% for col in volume.collections.all %} Collection: {{ col.label }}{% endfor %}
Publisher: {{ volume.published_city }} : {{ volume.publisher }}

IIIF Export

Export volume and annotations as a IIIF bundle for preservation. (Note this is different than the IIIF Manifest URL for reuse.)

{% csrf_token %}

Static Site Export

Export volume and annotations as static digital edition.

{% csrf_token %}
{{ export_form.non_field_errors }}
{# include volume pid as a hidden field so it is included in websocket form submission #} {% for field in export_form %} {% if field.name == 'mode' %} Select Export Mode {% for radio in field %}
{% with forloop.counter|cut:' ' as index %}
{{ export_form.mode_help|slice:index|last }}

{% endwith %}
{% endfor %}
{{ field.errors }}
{% elif field.name == 'annotations' and export_form.hide_annotation_choice %} {# hide annotation choice when flag is set (i.e., only one choice available) #} {# field|add_class:"hidden" #} {% elif field.field.is_checkbox %} {# bootstrap styles for checkbox input #} {% else %} {% if 'github' in user.socialaccount_list %}
{{ field }}
{{ field.help_text}}
{{ field.errors }}
{% else %}
{% include "snippets/github_authorize.html" %}
{% endif %} {% endif %} {% endfor %}
{% endblock viewer %}