bookwyrm/bookwyrm/templates/book/edit/edit_book.html

152 lines
6 KiB
HTML
Raw Normal View History

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 %}
{% load utilities %}
2022-02-26 00:40:34 +00:00
{% block title %}
{% if book.title %}
{% blocktrans with book_title=book.title %}Edit "{{ book_title }}"{% endblocktrans %}
{% else %}
{% trans "Add Book" %}
{% endif %}
{% endblock %}
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">
2022-02-26 00:40:34 +00:00
{% if book.title %}
2021-03-05 01:09:49 +00:00
{% blocktrans with book_title=book.title %}Edit "{{ book_title }}"{% endblocktrans %}
{% else %}
{% trans "Add Book" %}
{% endif %}
2021-01-14 22:13:23 +00:00
</h1>
2022-02-26 00:40:34 +00:00
{% if book.created_date %}
2021-06-02 16:17:53 +00:00
<dl>
2021-10-01 16:24:26 +00:00
<dt class="is-pulled-left mr-5 has-text-weight-semibold">{% trans "Added:" %}</dt>
<dd class="ml-2">{{ book.created_date | naturaltime }}</dd>
2021-06-02 16:17:53 +00:00
2021-10-01 16:24:26 +00:00
<dt class="is-pulled-left mr-5 has-text-weight-semibold">{% trans "Updated:" %}</dt>
<dd class="ml-2">{{ book.updated_date | naturaltime }}</dd>
2021-06-02 16:17:53 +00:00
{% if book.last_edited_by %}
2021-10-01 16:24:26 +00:00
<dt class="is-pulled-left mr-5 has-text-weight-semibold">{% trans "Last edited by:" %}</dt>
<dd class="ml-2"><a href="{{ book.last_edited_by.remote_id }}">{{ book.last_edited_by.display_name }}</a></dd>
2021-06-02 16:17:53 +00:00
{% endif %}
</dl>
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
2021-08-21 18:38:57 +00:00
<form
class="block"
2022-02-26 00:40:34 +00:00
{% if book.id %}
2021-08-21 18:38:57 +00:00
name="edit-book"
2022-05-19 16:32:01 +00:00
{% if confirm_mode %}
action="{% url 'edit-book-confirm' book.id %}"
{% else %}
action="{% url 'edit-book' book.id %}"
{% endif %}
2021-08-21 18:38:57 +00:00
{% else %}
name="create-book"
2022-05-19 16:32:01 +00:00
{% if confirm_mode %}
action="{% url 'create-book-confirm' %}"
{% else %}
action="{% url 'create-book' %}"
{% endif %}
2021-08-21 18:38:57 +00:00
{% endif %}
method="post"
enctype="multipart/form-data"
>
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 mb-4">
{% if author_matches %}
<input type="hidden" name="author-match-count" value="{{ author_matches|length }}">
<div class="column is-half">
{% for author in author_matches %}
<fieldset>
<legend class="title is-5 mb-1">
{% blocktrans with name=author.name %}Is "{{ name }}" one of these authors?{% endblocktrans %}
</legend>
{% with forloop.counter0 as counter %}
{% for match in author.matches %}
<label class="label">
<input type="radio" name="author_match-{{ counter }}" value="{{ match.id }}" required>
{{ match.name }}
2021-06-02 16:17:53 +00:00
</label>
<p class="help ml-5 mb-2">
{% with book_title=match.book_set.first.title alt_title=match.bio %}
{% if book_title %}
<a href="{{ match.local_path }}" target="_blank" rel="nofollow noopener noreferrer">{% blocktrans trimmed %}
Author of <em>{{ book_title }}</em>
{% endblocktrans %}</a>
{% else %}
2022-08-05 18:14:14 +00:00
<a href="{{ match.id }}" target="_blank" rel="nofollow noopener noreferrer">{% if alt_title %}{% blocktrans trimmed %}
Author of <em>{{ alt_title }}</em>
{% endblocktrans %}{% else %}{% trans "Find more information at isni.org" %}{% endif %}</a>
{% endif %}
{% endwith %}
2021-06-02 16:17:53 +00:00
</p>
<p class="help ml-5">
{{ author.existing_isnis|get_isni_bio:match }}
</p>
{{ author.existing_isnis|get_isni:match }}
{% endfor %}
<label class="label mt-2">
<input type="radio" name="author_match-{{ counter }}" value="{{ author.name }}" required> {% trans "This is a new author" %}
</label>
{% endwith %}
</fieldset>
2021-03-07 22:19:22 +00:00
{% endfor %}
2020-11-09 20:35:18 +00:00
</div>
{% else %}
<p class="column is-half">{% blocktrans with name=add_author %}Creating a new author: {{ name }}{% endblocktrans %}</p>
{% endif %}
2021-04-27 18:44:06 +00:00
{% if not book %}
<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 class="label mt-2">
<input type="radio" name="parent_work" value="0" required> {% trans "This is a new work" %}
</label>
</fieldset>
2021-06-02 16:17:53 +00:00
</div>
{% endif %}
</div>
<button class="button is-primary" type="submit">{% trans "Confirm" %}</button>
<a href="#" class="button" data-back>
<span>{% trans "Back" %}</span>
</a>
</div>
<hr class="block">
{% endif %}
2021-09-29 20:23:52 +00:00
{% include "book/edit/edit_book_form.html" %}
2020-04-02 15:44:53 +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>
2022-02-26 00:40:34 +00:00
{% if book.id %}
2021-06-02 16:17:53 +00:00
<a class="button" href="{{ book.local_path }}">{% trans "Cancel" %}</a>
{% else %}
<a href="/" class="button" data-back>
<span>{% trans "Cancel" %}</span>
</a>
{% endif %}
</div>
{% endif %}
2020-03-30 00:02:17 +00:00
</form>
2020-03-28 22:06:16 +00:00
{% endblock %}