Title: {{ form.title.errors }}{{ form.title }}
Publisher Name : {{ form.publisher_name.errors }}{{ form.publisher_name }}
(If you change this, click another form element before submitting)
Authors:
{% if edition.pk and edition.relators or edition.new_author_names %}
{% else %}
(None listed)
{% endif %}
Add a Creator (Firstname Lastname): {{ form.add_author.errors }}{{ form.add_author }}{{ form.add_author_relation.errors }}{{ form.add_author_relation }}
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 }}
{% if request.user.is_staff %}
HTTP ID: {{ form.http.errors }}{{ form.http }}
{% endif %}
Description:
{{ form.description.errors }}{{ form.description }}
({% if work.last_campaign %}
{% ifequal work.last_campaign.type 3 %}
This will appear in the Description tab on the book page.
{% else %}
The campaign pitch will override this description.
{% endifequal %}
{% else %}
This will appear in the Description tab on the book page.
{% endif %}
)
Publication Date (four-digit year): {{ form.publication_date.errors }}{{ form.publication_date }}
{% 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.pk and 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:
{% if edition.cover_image %}
{% else %}
[ no cover specified for this edition ]
{% endif %}
{{ form.cover_image.errors }}{{ form.cover_image }}{{ form.cover_image.help_text }}
(Enter a URL for an image, ideally 120px wide. )
OR...
{{ form.coverfile.errors }}{{ form.coverfile }}{{ form.coverfile.help_text }}
(upload a cover image file, ideally 120px wide. )