forked from mirrors/bookwyrm
953dff90bb
- `optimizeQuality` > `smooth` (CSS language evolution) - Use `auto` instead of a fixed width. - Add exceptions for heights and apply them to some previously modified templates. - Remove `is-large` exception. - Widen the content column on list curation.
298 lines
13 KiB
HTML
298 lines
13 KiB
HTML
{% extends 'layout.html' %}
|
|
{% load i18n %}
|
|
{% load bookwyrm_tags %}
|
|
{% load humanize %}
|
|
|
|
{% block title %}{{ book.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% with user_authenticated=request.user.is_authenticated can_edit_book=perms.bookwyrm.edit_book %}
|
|
<div class="block" itemscope itemtype="https://schema.org/Book">
|
|
<div class="columns is-mobile">
|
|
<div class="column">
|
|
<h1 class="title">
|
|
<span itemprop="name">
|
|
{{ book.title }}{% if book.subtitle %}:
|
|
<small>{{ book.subtitle }}</small>
|
|
{% endif %}
|
|
</span>
|
|
|
|
{% if book.series %}
|
|
<meta itemprop="isPartOf" content="{{ book.series }}">
|
|
<meta itemprop="volumeNumber" content="{{ book.series_number }}">
|
|
|
|
<small class="has-text-grey-dark">
|
|
({{ book.series }}
|
|
{% if book.series_number %} #{{ book.series_number }}{% endif %})
|
|
</small>
|
|
<br>
|
|
{% endif %}
|
|
</h1>
|
|
{% if book.authors %}
|
|
<h2 class="subtitle">
|
|
{% trans "by" %} {% include 'snippets/authors.html' with book=book %}
|
|
</h2>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if user_authenticated and can_edit_book %}
|
|
<div class="column is-narrow">
|
|
<a href="{{ book.id }}/edit">
|
|
<span class="icon icon-pencil" title="{% trans "Edit Book" %}">
|
|
<span class="is-sr-only">{% trans "Edit Book" %}</span>
|
|
</span>
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="columns">
|
|
<div class="column is-one-fifth">
|
|
{% include 'snippets/book_cover.html' with book=book cover_class='has-height is-h-medium-mobile' %}
|
|
{% include 'snippets/rate_action.html' with user=request.user book=book %}
|
|
|
|
<div class="mb-3">
|
|
{% include 'snippets/shelve_button/shelve_button.html' %}
|
|
</div>
|
|
|
|
{% if user_authenticated and not book.cover %}
|
|
<div class="block">
|
|
{% trans "Add cover" as button_text %}
|
|
{% include 'snippets/toggle/toggle_button.html' with text=button_text controls_text="add-cover" controls_uid=book.id focus="modal-title-add-cover" class="is-small" %}
|
|
{% include 'book/cover_modal.html' with book=book controls_text="add-cover" controls_uid=book.id %}
|
|
{% if request.GET.cover_error %}
|
|
<p class="help is-danger">{% trans "Failed to load cover" %}</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<section class="is-clipped">
|
|
{% with book=book %}
|
|
<div class="content">
|
|
{% include 'book/publisher_info.html' %}
|
|
</div>
|
|
|
|
<div class="my-3">
|
|
{% include 'book/book_identifiers.html' %}
|
|
</div>
|
|
{% endwith %}
|
|
|
|
{% if book.openlibrary_key %}
|
|
<p><a href="https://openlibrary.org/books/{{ book.openlibrary_key }}" target="_blank" rel="noopener">{% trans "View on OpenLibrary" %}</a></p>
|
|
{% endif %}
|
|
</section>
|
|
</div>
|
|
|
|
<div class="column is-three-fifths">
|
|
<div class="block">
|
|
<h3
|
|
class="field is-grouped"
|
|
itemprop="aggregateRating"
|
|
itemscope
|
|
itemtype="https://schema.org/AggregateRating"
|
|
>
|
|
<meta itemprop="ratingValue" content="{{ rating|floatformat }}">
|
|
{# @todo Is it possible to not hard-code the value? #}
|
|
<meta itemprop="bestRating" content="5">
|
|
<meta itemprop="reviewCount" content="{{ review_count }}">
|
|
|
|
{% include 'snippets/stars.html' with rating=rating %}
|
|
|
|
{% blocktrans count counter=review_count trimmed %}
|
|
({{ review_count }} review)
|
|
{% plural %}
|
|
({{ review_count }} reviews)
|
|
{% endblocktrans %}
|
|
</h3>
|
|
|
|
{% with full=book|book_description itemprop='abstract' %}
|
|
{% include 'snippets/trimmed_text.html' %}
|
|
{% endwith %}
|
|
|
|
{% if user_authenticated and can_edit_book and not book|book_description %}
|
|
{% trans 'Add Description' as button_text %}
|
|
{% include 'snippets/toggle/open_button.html' with text=button_text controls_text="add-description" controls_uid=book.id focus="id_description" hide_active=True id="hide-description" %}
|
|
|
|
<div class="box is-hidden" id="add-description-{{ book.id }}">
|
|
<form name="add-description" method="POST" action="/add-description/{{ book.id }}">
|
|
{% csrf_token %}
|
|
<p class="fields is-grouped">
|
|
<label class="label"for="id_description">{% trans "Description:" %}</label>
|
|
<textarea name="description" cols="None" rows="None" class="textarea" id="id_description"></textarea>
|
|
</p>
|
|
<div class="field">
|
|
<button class="button is-primary" type="submit">{% trans "Save" %}</button>
|
|
{% trans "Cancel" as button_text %}
|
|
{% include 'snippets/toggle/close_button.html' with text=button_text controls_text="add-description" controls_uid=book.id hide_inactive=True %}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
{% if book.parent_work.editions.count > 1 %}
|
|
<p>{% blocktrans with path=book.parent_work.local_path count=book.parent_work.editions.count %}<a href="{{ path }}/editions">{{ count }} editions</a>{% endblocktrans %}</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{# user's relationship to the book #}
|
|
<div class="block">
|
|
{% for shelf in user_shelves %}
|
|
<p>
|
|
{% blocktrans with path=shelf.shelf.local_path shelf_name=shelf.shelf.name %}This edition is on your <a href="{{ path }}">{{ shelf_name }}</a> shelf.{% endblocktrans %}
|
|
{% include 'snippets/shelf_selector.html' with current=shelf.shelf %}
|
|
</p>
|
|
{% endfor %}
|
|
{% for shelf in other_edition_shelves %}
|
|
<p>
|
|
{% blocktrans with book_path=shelf.book.local_path shelf_path=shelf.shelf.local_path shelf_name=shelf.shelf.name %}A <a href="{{ book_path }}">different edition</a> of this book is on your <a href="{{ shelf_path }}">{{ shelf_name }}</a> shelf.{% endblocktrans %}
|
|
{% include 'snippets/switch_edition_button.html' with edition=book %}
|
|
</p>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% if user_authenticated %}
|
|
<section class="block">
|
|
<header class="columns">
|
|
<h2 class="column title is-5 mb-1">{% trans "Your reading activity" %}</h2>
|
|
<div class="column is-narrow">
|
|
{% trans "Add read dates" as button_text %}
|
|
{% include 'snippets/toggle/open_button.html' with text=button_text icon="plus" class="is-small" controls_text="add-readthrough" %}
|
|
</div>
|
|
</header>
|
|
{% if not readthroughs.exists %}
|
|
<p>{% trans "You don't have any reading activity for this book." %}</p>
|
|
{% endif %}
|
|
<section class="is-hidden box" id="add-readthrough">
|
|
<form name="add-readthrough" action="/create-readthrough" method="post">
|
|
{% include 'snippets/readthrough_form.html' with readthrough=None %}
|
|
<div class="field is-grouped">
|
|
<div class="control">
|
|
<button class="button is-primary" type="submit">{% trans "Create" %}</button>
|
|
</div>
|
|
<div class="control">
|
|
{% trans "Cancel" as button_text %}
|
|
{% include 'snippets/toggle/close_button.html' with text=button_text controls_text="add-readthrough" %}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
{% for readthrough in readthroughs %}
|
|
{% include 'snippets/readthrough.html' with readthrough=readthrough %}
|
|
{% endfor %}
|
|
</section>
|
|
|
|
<section class="box">
|
|
{% include 'snippets/create_status.html' with book=book hide_cover=True %}
|
|
</section>
|
|
{% endif %}
|
|
</div>
|
|
<div class="column is-one-fifth">
|
|
{% if book.subjects %}
|
|
<section class="content block">
|
|
<h2 class="title is-5">{% trans "Subjects" %}</h2>
|
|
|
|
<ul>
|
|
{% for subject in book.subjects %}
|
|
<li itemprop="about">{{ subject }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% if book.subject_places %}
|
|
<section class="content block">
|
|
<h2 class="title is-5">{% trans "Places" %}</h2>
|
|
<ul>
|
|
{% for place in book.subject_places %}
|
|
<li>{{ place }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% if lists.exists or request.user.list_set.exists %}
|
|
<section class="content block">
|
|
<h2 class="title is-5">{% trans "Lists" %}</h2>
|
|
<ul>
|
|
{% for list in lists %}
|
|
<li><a href="{{ list.local_path }}">{{ list.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% if request.user.list_set.exists %}
|
|
<form name="list-add" method="post" action="{% url 'list-add-book' %}">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="book" value="{{ book.id }}">
|
|
<label class="label" for="id_list">{% trans "Add to list" %}</label>
|
|
<div class="field has-addons">
|
|
<div class="select control">
|
|
<select name="list" id="id_list">
|
|
{% for list in user.list_set.all %}
|
|
<option value="{{ list.id }}">{{ list.name }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="control">
|
|
<button type="submit" class="button is-link">{% trans "Add" %}</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endif %}
|
|
</section>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="block" id="reviews">
|
|
{% for review in reviews %}
|
|
<div
|
|
class="block"
|
|
itemprop="review"
|
|
itemscope
|
|
itemtype="https://schema.org/Review"
|
|
>
|
|
{% with status=review hide_book=True depth=1 %}
|
|
{% include 'snippets/status/status.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<div class="block is-flex is-flex-wrap-wrap">
|
|
{% for rating in ratings %}
|
|
{% with user=rating.user %}
|
|
<div class="block mr-5">
|
|
<div class="media">
|
|
<div class="media-left">
|
|
{% include 'snippets/avatar.html' %}
|
|
</div>
|
|
|
|
<div class="media-content">
|
|
<div>
|
|
<a href="{{ user.local_path }}">{{ user.display_name }}</a>
|
|
</div>
|
|
<div class="is-flex">
|
|
<p class="mr-1">{% trans "rated it" %}</p>
|
|
|
|
{% include 'snippets/stars.html' with rating=rating.rating %}
|
|
</div>
|
|
<div>
|
|
<a href="{{ rating.remote_id }}">{{ rating.published_date | naturaltime }}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</div>
|
|
<div class="block">
|
|
{% include 'snippets/pagination.html' with page=reviews path=book.local_path anchor="#reviews" %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endwith %}
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script src="/static/js/vendor/tabs.js"></script>
|
|
{% endblock %}
|