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 %}
{% if edition.pk and edition.authors %}
{% for author in edition.authors.all %}
- {{ author.name }}
{% endfor %}
{% endif %}
{% for author in edition.new_author_names %}
- {{ author }}
{% endfor %}
{% 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:
{% if edition.work.subjects %}
{% for subject in edition.work.subjects.all %}
- {{ subject.name }}
{% endfor %}
{% endif %}
{% for new_subject in edition.new_subjects %}
- {{ new_subject }}
{% endfor %}
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 %}