2012-05-11 18:13:09 +00:00
{% extends "basedocumentation.html" %}
{% block extra_extra_head %}
< link rel = "stylesheet" href = "https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/themes/ui-lightness/jquery-ui.css" type = "text/css" media = "screen" >
{{ form.media.css }}
< script type = "text/javascript" src = "{{ jquery_ui_home }}" > < / script >
2013-04-13 14:59:11 +00:00
2012-05-11 18:13:09 +00:00
{{ form.media.js }}
{% endblock %}
{% block doccontent %}
{% if edition.pk %}
2012-09-10 14:51:52 +00:00
< h2 > Edit Edition< / h2 >
2012-05-11 18:13:09 +00:00
{% else %}
< h2 > Create New Edition< / h2 >
{% endif %}
2012-09-10 14:51:52 +00:00
< p > Title and ISBN 13 are required; the rest is optional, though a cover image link is strongly recommended.< / p >
2012-05-11 18:13:09 +00:00
< form method = "POST" action = "#" >
2012-09-10 14:51:52 +00:00
{% csrf_token %}
{{ form.work }}
2013-05-13 21:32:30 +00:00
{{ form.non_field_errors }}
2012-09-10 14:51:52 +00:00
< div >
< p > < b > Title< / b > : {{ form.title.errors }}{{ form.title }}< / p >
2013-05-16 14:25:20 +00:00
< p > < b > Publisher< / b > : {{ form.publisher_name.errors }}{{ form.publisher_name }}< br / > (If you change this, click another form element before submitting)< / p >
2012-09-10 14:51:52 +00:00
< p >
< b > Authors< / b > :
{% if edition.authors or edition.new_author_names %}
< ul >
{% if edition.pk and edition.authors %}
{% for author in edition.authors.all %}
< li > {{ author.name }}< / li >
{% endfor %}
{% endif %}
{% for author in edition.new_author_names %}
< li > {{ author }}< input type = "hidden" name = "new_author" value = "{{ author }}" / > < / li >
{% endfor %}
< / ul >
{% else %}
(None listed)
{% endif %}
< / p >
< p > < b > Add an Author< / b > (< I > Firstname Lastname< / I > ): {{ form.add_author.errors }}{{ form.add_author }}
< input type = "submit" name = "add_author_submit" value = "Add Author" id = "submit_author" > < / p >
< p > < b > Language< / b > : {{ form.language.errors }}{{ form.language }}< / p >
2013-04-13 14:59:11 +00:00
< h4 > Identifiers < / h4 >
{% if id_msg %} < span class = "errorlist" > {{ id_msg }} < / span > {% endif %}
< p > Enter 'delete' to remove the identifier. < / p >
< p > < b > ISBN-13< / b > : {{ form.isbn.errors }}{{ form.isbn }}< / p >
< p > < b > OCLC Number< / b > : {{ form.oclc.errors }}{{ form.oclc }}< / p >
< p > < b > Google Books ID< / b > : {{ form.goog.errors }}{{ form.goog }}< / p >
< p > < b > GoodReads ID< / b > : {{ form.gdrd.errors }}{{ form.gdrd }}< / p >
< p > < b > LibraryThing ID< / b > : {{ form.thng.errors }}{{ form.thng }}< / p >
2012-09-10 14:51:52 +00:00
< p > < b > Description< / b > : < br / >
{{ form.description.errors }}{{ form.description }}< br / >
(< I > 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< / i > )< / p >
< p > < b > Publisher< / b > : {{ form.publisher.errors }}{{ form.publisher }}< / p >
< p > < b > Publish Date< / b > (< I > four-digit year< / I > ): {{ form.publication_date.errors }}{{ form.publication_date }}< / p >
< p > < b > Public Domain?< / b > : {{ form.public_domain.errors }}{{ form.public_domain }}< / p >
{% 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.
< p > < b > Subjects< / b > :
< ul >
{% if edition.work.subjects %}
{% for subject in edition.work.subjects.all %}
< li > {{ subject.name }}< / li >
{% endfor %}
{% endif %}
{% for new_subject in edition.new_subjects %}
< li > {{ new_subject }}< input type = "hidden" name = "new_subject" value = "{{ new_subject }}" / > < / li >
{% endfor %}
< / ul >
< b > Add a Subject< / b > : {{ form.add_subject.errors }}{{ form.add_subject }}
< input type = "submit" name = "add_subject_submit" value = "Add Subject" id = "submit_subject" > < / p >
{% endcomment %}
< p > < b > Cover Image< / b > : {{ form.cover_image.errors }}{{ form.cover_image }}{{ form.cover_image.help_text }}< br / >
(< i > 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.< / I > )< / p >
2012-09-10 19:18:40 +00:00
{% if request.user.is_staff %}
< p > < b > Is this the unglued edition?< / b > {{ form.unglued }}< / p >
{% endif %}
2012-09-10 14:51:52 +00:00
< / div >
< input type = "submit" name = "create_new_edition" value = "{% if edition.pk %}Save Edits{% else %}Create Edition{% endif %}" id = "submit" >
2012-05-11 18:13:09 +00:00
< / form >
2013-04-16 20:46:45 +00:00
{% if edition.work %}
< h2 > More Edition Management< / h2 >
2012-05-11 18:13:09 +00:00
2013-04-16 20:46:45 +00:00
< div > < a href = "{% url merge edition.work.id %}" > Merge other works into this one< / a > < / div >
< div > < a href = "{% url split edition.work.id %}" > Remove editions from this work< / a > < br / > < br / > < / div >
{% endif %}
2012-05-11 18:13:09 +00:00
2013-05-16 14:25:20 +00:00
{% endblock %}