2020-03-28 22:06:16 +00:00
{% extends 'layout.html' %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
2020-03-30 00:02:17 +00:00
{% load humanize %}
2021-02-28 18:00:36 +00:00
2021-03-02 17:01:31 +00:00
{% block title %}{% if book %}{% blocktrans with book_title=book.title %}Edit "{{ book_title }}"{% endblocktrans %}{% else %}{% trans "Add Book" %}{% endif %}{% endblock %}
2021-02-28 18:00:36 +00:00
2020-03-28 22:06:16 +00:00
{% block content %}
2021-01-14 22:13:23 +00:00
< header class = "block" >
< h1 class = "title level-left" >
2021-03-02 17:01:31 +00:00
{% if book %}
2021-03-05 01:09:49 +00:00
{% blocktrans with book_title=book.title %}Edit "{{ book_title }}"{% endblocktrans %}
2021-03-02 17:01:31 +00:00
{% else %}
{% trans "Add Book" %}
{% endif %}
2021-01-14 22:13:23 +00:00
< / h1 >
2021-03-08 17:28:22 +00:00
{% if book %}
2020-11-09 20:35:18 +00:00
< div >
2021-02-28 02:48:10 +00:00
< p > {% trans "Added:" %} {{ book.created_date | naturaltime }}< / p >
< p > {% trans "Updated:" %} {{ book.updated_date | naturaltime }}< / p >
< p > {% trans "Last edited by:" %} < a href = "{{ book.last_edited_by.remote_id }}" > {{ book.last_edited_by.display_name }}< / a > < / p >
2020-03-30 00:02:17 +00:00
< / div >
2021-03-08 17:28:22 +00:00
{% endif %}
2021-01-14 22:13:23 +00:00
< / header >
2020-03-28 22:06:16 +00:00
2020-12-22 17:26:40 +00:00
{% if form.non_field_errors %}
2020-11-24 21:25:28 +00:00
< div class = "block" >
2020-12-22 17:26:40 +00:00
< p class = "notification is-danger" > {{ form.non_field_errors }}< / p >
2020-11-24 21:25:28 +00:00
< / div >
{% endif %}
2020-11-24 21:37:35 +00:00
2021-03-08 17:28:22 +00:00
{% if book %}
2021-03-05 01:09:49 +00:00
< form class = "block" name = "edit-book" action = "{{ book.local_path }}/{% if confirm_mode %}confirm{% else %}edit{% endif %}" method = "post" enctype = "multipart/form-data" >
2021-03-08 17:28:22 +00:00
{% else %}
< form class = "block" name = "create-book" action = "/create-book{% if confirm_mode %}/confirm{% endif %}" method = "post" enctype = "multipart/form-data" >
{% endif %}
2020-03-30 00:02:17 +00:00
{% csrf_token %}
2021-03-05 01:09:49 +00:00
{% if confirm_mode %}
< div class = "box" >
< h2 class = "title is-4" > {% trans "Confirm Book Info" %}< / h2 >
< div class = "columns" >
2021-03-12 00:33:49 +00:00
{% if author_matches %}
2021-03-14 02:09:09 +00:00
< input type = "hidden" name = "author-match-count" value = "{{ author_matches|length }}" >
2021-03-12 00:33:49 +00:00
< div class = "column is-half" >
{% for author in author_matches %}
< fieldset class = "mb-4" >
< legend class = "title is-5 mb-1" > {% blocktrans with name=author.name %}Is "{{ name }}" an existing author?{% endblocktrans %}< / legend >
2021-03-14 02:09:09 +00:00
{% with forloop.counter0 as counter %}
2021-03-12 00:33:49 +00:00
{% for match in author.matches %}
< label > < input type = "radio" name = "author_match-{{ counter }}" value = "{{ match.id }}" required > {{ match.name }}< / label >
< p class = "help" >
2021-03-14 01:31:06 +00:00
< a href = "{{ match.local_path }}" target = "_blank" > {% blocktrans with book_title=match.book_set.first.title %}Author of < em > {{ book_title }}< / em > {% endblocktrans %}< / a >
2021-03-12 00:33:49 +00:00
< / p >
{% endfor %}
2021-03-14 02:09:09 +00:00
< label > < input type = "radio" name = "author_match-{{ counter }}" value = "{{ author.name }}" required > {% trans "This is a new author" %}< / label >
2021-03-12 00:33:49 +00:00
{% endwith %}
< / fieldset >
2021-03-05 01:09:49 +00:00
{% endfor %}
2021-03-12 00:33:49 +00:00
< / div >
2021-03-05 01:09:49 +00:00
{% else %}
< p class = "column is-half" > {% blocktrans with name=add_author %}Creating a new author: {{ name }}{% endblocktrans %}< / p >
{% endif %}
{% if not book %}
2021-03-12 00:33:49 +00:00
< div class = "column is-half" >
< fieldset >
< legend class = "title is-5 mb-1" > {% trans "Is this an edition of an existing work?" %}< / legend >
{% for match in book_matches %}
< label class = "label" > < input type = "radio" name = "parent_work" value = "{{ match.parent_work.id }}" > {{ match.parent_work.title }}< / label >
{% endfor %}
< label > < input type = "radio" name = "parent_work" value = "0" required > {% trans "This is a new work" %}< / label >
< / fieldset >
< / div >
2021-03-05 01:09:49 +00:00
{% endif %}
< / div >
< button class = "button is-primary" type = "submit" > {% trans "Confirm" %}< / button >
2021-03-12 17:46:28 +00:00
< a href = "#" class = "button" data-back >
< span > {% trans "Back" %}< / span >
< / a >
2021-03-05 01:09:49 +00:00
< / div >
< hr class = "block" >
{% endif %}
2020-12-22 17:26:40 +00:00
< input type = "hidden" name = "last_edited_by" value = "{{ request.user.id }}" >
2020-09-30 03:36:43 +00:00
< div class = "columns" >
2021-03-19 17:29:34 +00:00
< div class = "column is-half" >
2021-03-02 17:01:31 +00:00
< section class = "block" >
< h2 class = "title is-4" > {% trans "Metadata" %}< / h2 >
2021-04-07 15:50:50 +00:00
< p class = "mb-2" >
< label class = "label" for = "id_title" > {% trans "Title:" %}< / label >
2021-04-08 01:38:26 +00:00
< input type = "text" name = "title" value = "{{ form.title.value|default:'' }}" maxlength = "255" class = "input" required = "" id = "id_title" >
2021-04-07 15:50:50 +00:00
< / p >
2021-03-02 17:01:31 +00:00
{% for error in form.title.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
2021-04-07 15:50:50 +00:00
< p class = "mb-2" >
< label class = "label" for = "id_subtitle" > {% trans "Subtitle:" %}< / label >
2021-04-08 23:08:35 +00:00
< input type = "text" name = "subtitle" value = "{{ form.subtitle.value|default:'' }}" maxlength = "255" class = "input" id = "id_subtitle" >
2021-04-07 15:50:50 +00:00
< / p >
2021-03-02 17:01:31 +00:00
{% for error in form.subtitle.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
< p class = "mb-2" > < label class = "label" for = "id_description" > {% trans "Description:" %}< / label > {{ form.description }} < / p >
2021-03-02 17:01:31 +00:00
{% for error in form.description.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
2021-04-20 20:07:55 +00:00
< p class = "mb-2" >
< label class = "label" for = "id_series" > {% trans "Series:" %}< / label >
< input type = "text" class = "input" name = "series" id = "id_series" value = "{{ form.series.value|default:'' }}" >
< / p >
2021-03-02 17:01:31 +00:00
{% for error in form.series.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
< p class = "mb-2" > < label class = "label" for = "id_series_number" > {% trans "Series number:" %}< / label > {{ form.series_number }} < / p >
2021-03-02 17:01:31 +00:00
{% for error in form.series_number.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
< p class = "mb-2" >
< label class = "label" for = "id_publishers" > {% trans "Publisher:" %}< / label >
{{ form.publishers }}
< span class = "help" > {% trans "Separate multiple publishers with commas." %}< / span >
< / p >
{% for error in form.publishers.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-04-03 19:10:21 +00:00
< p class = "mb-2" >
< label class = "label" for = "id_first_published_date" > {% trans "First published date:" %}< / label >
2021-04-07 00:43:37 +00:00
< input type = "date" name = "first_published_date" class = "input" id = "id_first_published_date" { % if form . first_published_date . value % } value = "{{ form.first_published_date.value|date:'Y-m-d' }}" { % endif % } >
2021-04-03 19:10:21 +00:00
< / p >
2021-03-02 17:01:31 +00:00
{% for error in form.first_published_date.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
2021-04-03 19:10:21 +00:00
< p class = "mb-2" >
< label class = "label" for = "id_published_date" > {% trans "Published date:" %}< / label >
2021-04-07 00:43:37 +00:00
< input type = "date" name = "published_date" class = "input" id = "id_published_date" { % if form . published_date . value % } value = "{{ form.published_date.value|date:'Y-m-d'}}" { % endif % } >
2021-04-03 19:10:21 +00:00
< / p >
2021-03-02 17:01:31 +00:00
{% for error in form.published_date.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
< / section >
< section class = "block" >
< h2 class = "title is-4" > {% trans "Authors" %}< / h2 >
2021-03-12 00:33:49 +00:00
{% if book.authors.exists %}
2021-03-07 22:19:22 +00:00
< fieldset >
{% for author in book.authors.all %}
2021-03-12 00:33:49 +00:00
< label class = "label mb-2" >
< input type = "checkbox" name = "remove_authors" value = "{{ author.id }}" { % if author . id | stringformat: " i " in remove_authors % } checked { % endif % } >
{% blocktrans with name=author.name path=author.local_path %}Remove < a href = "{{ path }}" > {{ name }}< / a > {% endblocktrans %}
2021-03-07 22:19:22 +00:00
< / label >
{% endfor %}
< / fieldset >
2021-03-12 00:33:49 +00:00
{% endif %}
< label class = "label" for = "id_add_author" > {% trans "Add Authors:" %}< / label >
2021-03-12 17:46:28 +00:00
< input class = "input" type = "text" name = "add_author" id = "id_add_author" placeholder = "{% trans 'John Doe, Jane Smith' %}" value = "{{ add_author }}" { % if confirm_mode % } readonly { % endif % } >
2021-03-15 22:28:50 +00:00
< p class = "help" > Separate multiple author names with commas.< / p >
2021-03-02 17:01:31 +00:00
< / section >
2020-09-30 03:36:43 +00:00
< / div >
2020-03-30 00:02:17 +00:00
2021-03-19 17:29:34 +00:00
< div class = "column is-half" >
< h2 class = "title is-4" > {% trans "Cover" %}< / h2 >
2020-11-09 20:35:18 +00:00
< div class = "columns" >
< div class = "column is-narrow" >
2021-04-25 13:37:46 +00:00
{% include 'snippets/book_cover.html' with book=book cover_class='is-h-small' %}
2020-11-09 20:35:18 +00:00
< / div >
< div class = "column is-narrow" >
< div class = "block" >
2021-03-19 17:29:34 +00:00
< p >
< label class = "label" for = "id_cover" > {% trans "Upload cover:" %}< / label >
{{ form.cover }}
< / p >
{% if book %}
< p >
< label class = "label" for = "id_cover_url" >
{% trans "Load cover from url:" %}
< / label >
< input class = "input" name = "cover-url" id = "id_cover_url" >
< / p >
{% endif %}
2020-11-24 21:37:35 +00:00
{% for error in form.cover.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2020-11-09 20:35:18 +00:00
< / div >
< / div >
2020-09-30 03:36:43 +00:00
< / div >
2020-03-30 00:02:17 +00:00
2020-09-30 03:36:43 +00:00
< div class = "block" >
2021-02-28 02:48:10 +00:00
< h2 class = "title is-4" > {% trans "Physical Properties" %}< / h2 >
2021-03-15 22:28:50 +00:00
< p class = "mb-2" > < label class = "label" for = "id_physical_format" > {% trans "Format:" %}< / label > {{ form.physical_format }} < / p >
2020-11-24 21:37:35 +00:00
{% for error in form.physical_format.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
{% for error in form.physical_format.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
< p class = "mb-2" > < label class = "label" for = "id_pages" > {% trans "Pages:" %}< / label > {{ form.pages }} < / p >
2020-11-24 21:37:35 +00:00
{% for error in form.pages.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
< / div >
< div class = "block" >
2021-02-28 02:48:10 +00:00
< h2 class = "title is-4" > {% trans "Book Identifiers" %}< / h2 >
2021-03-15 22:28:50 +00:00
< p class = "mb-2" > < label class = "label" for = "id_isbn_13" > {% trans "ISBN 13:" %}< / label > {{ form.isbn_13 }} < / p >
2020-11-24 21:37:35 +00:00
{% for error in form.isbn_13.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
< p class = "mb-2" > < label class = "label" for = "id_isbn_10" > {% trans "ISBN 10:" %}< / label > {{ form.isbn_10 }} < / p >
2020-11-24 21:37:35 +00:00
{% for error in form.isbn_10.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
< p class = "mb-2" > < label class = "label" for = "id_openlibrary_key" > {% trans "Openlibrary key:" %}< / label > {{ form.openlibrary_key }} < / p >
2020-11-24 21:37:35 +00:00
{% for error in form.openlibrary_key.errors %}
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
< p class = "mb-2" > < label class = "label" for = "id_oclc_number" > {% trans "OCLC Number:" %}< / label > {{ form.oclc_number }} < / p >
2021-01-05 00:42:28 +00:00
{% for error in form.oclc_number.errors %}
2020-11-24 21:37:35 +00:00
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2021-03-15 22:28:50 +00:00
< p class = "mb-2" > < label class = "label" for = "id_asin" > {% trans "ASIN:" %}< / label > {{ form.asin }} < / p >
2021-01-05 00:42:28 +00:00
{% for error in form.ASIN.errors %}
2020-11-24 21:37:35 +00:00
< p class = "help is-danger" > {{ error | escape }}< / p >
{% endfor %}
2020-09-30 03:36:43 +00:00
< / div >
< / div >
2020-04-02 15:44:53 +00:00
< / div >
2021-03-08 22:11:08 +00:00
{% if not confirm_mode %}
2020-09-30 03:36:43 +00:00
< div class = "block" >
2021-02-28 02:48:10 +00:00
< button class = "button is-primary" type = "submit" > {% trans "Save" %}< / button >
< a class = "button" href = "/book/{{ book.id }}" > {% trans "Cancel" %}< / a >
2020-04-04 20:46:10 +00:00
< / div >
2021-03-08 22:11:08 +00:00
{% endif %}
2020-03-30 00:02:17 +00:00
< / form >
2020-03-28 22:06:16 +00:00
{% endblock %}