2021-04-24 10:48:55 +00:00
|
|
|
|
2021-01-03 19:24:26 +00:00
|
|
|
{% load bookwyrm_tags %}
|
2021-03-04 22:27:49 +00:00
|
|
|
{% load i18n %}
|
2021-04-24 10:48:55 +00:00
|
|
|
|
2021-01-03 22:28:28 +00:00
|
|
|
{% if book %}
|
2021-04-24 10:48:55 +00:00
|
|
|
{% with book=book %}
|
|
|
|
<div class="columns">
|
|
|
|
<div class="column">
|
|
|
|
<a
|
|
|
|
href="{{ book.local_path }}"
|
|
|
|
>{% include 'snippets/book_cover.html' with size="large" %}</a>
|
|
|
|
|
|
|
|
{% include 'snippets/stars.html' with rating=book|rating:request.user %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="column">
|
|
|
|
<h3 class="title is-5">
|
|
|
|
<a href="/book/{{ book.id }}">{{ book.title }}</a>
|
|
|
|
</h3>
|
|
|
|
|
|
|
|
{% if book.authors %}
|
|
|
|
<p class="subtitle is-5">
|
|
|
|
{% trans "by" %}
|
|
|
|
{% include 'snippets/authors.html' %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if book|book_description %}
|
|
|
|
<blockquote class="content">
|
|
|
|
{{ book|book_description|to_markdown|safe|truncatewords_html:50 }}
|
|
|
|
</blockquote>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endwith %}
|
2021-01-03 22:28:28 +00:00
|
|
|
{% endif %}
|