{% extends "basedocumentation.html" %} {% block extra_extra_head %} {{ form.media.css }} {{ form.media.js }} {% endblock %} {% block doccontent %} {% if edition.pk %}

Edit Edition

{% else %}

Create New Edition

{% endif %}

Title and ISBN 13 are required; the rest is optional, though a cover image link is strongly recommended.

{% csrf_token %} {{ form.work }} {{ form.non_field_errors }}

Title: {{ form.title.errors }}{{ form.title }}

Publisher : {{ form.publisher_name.errors }}{{ form.publisher_name }}
(If you change this, click another form element before submitting)

Authors: {% if edition.authors or edition.new_author_names %}

{% else %} (None listed) {% endif %}

Add an Author (Firstname Lastname): {{ form.add_author.errors }}{{ form.add_author }}

Language: {{ form.language.errors }}{{ form.language }}

Identifiers

{% if id_msg %} {{ id_msg }} {% endif %}

Enter 'delete' to remove the identifier.

ISBN-13: {{ form.isbn.errors }}{{ form.isbn }}

OCLC Number: {{ form.oclc.errors }}{{ form.oclc }}

Google Books ID: {{ form.goog.errors }}{{ form.goog }}

GoodReads ID: {{ form.gdrd.errors }}{{ form.gdrd }}

LibraryThing ID: {{ form.thng.errors }}{{ form.thng }}

Description:
{{ form.description.errors }}{{ form.description }}
(This will appear in the Description tab on the book page. If you create a campaign for this work, the campaign pitch will override this description)

Publisher: {{ form.publisher.errors }}{{ form.publisher }}

Publish Date (four-digit year): {{ form.publication_date.errors }}{{ form.publication_date }}

Public Domain?: {{ form.public_domain.errors }}{{ form.public_domain }}

{% comment %} this has been removed since there's no point in exposing subject functionality when we're not doing anything with it -- will just confuse people.

Subjects:

Add a Subject: {{ form.add_subject.errors }}{{ form.add_subject }}

{% endcomment %}

Cover Image: {{ form.cover_image.errors }}{{ form.cover_image }}{{ form.cover_image.help_text }}
(Enter a link to an image, ideally 120px wide. You can't upload an image through this form at this time. If you have a cover image file and you're not sure how to put it online, email us and we can upload it for you.)

{% if request.user.is_staff %}

Is this the unglued edition? {{ form.unglued }}

{% endif %}
{% if edition.work %}

More Edition Management

Merge other works into this one
Remove editions from this work

{% endif %} {% endblock %}