{% 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 }}

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

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 }}

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

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

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 %}
{% endblock %}