2020-02-11 00:09:04 -05:00
|
|
|
{% load fr_display %}
|
2020-02-19 02:03:04 -05:00
|
|
|
{% include 'snippets/book_cover.html' with book=book %}
|
2020-02-11 00:09:04 -05:00
|
|
|
<p class="title">
|
2020-03-07 01:56:44 -05:00
|
|
|
<a href="/book/{{ book.openlibrary_key }}">{{ book.title }}</a>
|
2020-02-11 00:09:04 -05:00
|
|
|
</p>
|
2020-02-23 17:26:03 -05:00
|
|
|
<p>
|
2020-03-07 01:56:44 -05:00
|
|
|
by {% include 'snippets/authors.html' with book=book %}
|
2020-02-23 17:26:03 -05:00
|
|
|
</p>
|
2020-02-11 00:09:04 -05:00
|
|
|
|
|
|
|
{% if rating %}
|
|
|
|
{{ rating | stars }} {{ rating }}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if description %}
|
2020-03-07 01:56:44 -05:00
|
|
|
<blockquote>{{ book.description | description }}</blockquote>
|
2020-02-11 00:09:04 -05:00
|
|
|
{% endif %}
|
2020-02-21 19:26:52 -05:00
|
|
|
|
2020-03-15 17:15:36 -04:00
|
|
|
{% include 'snippets/shelve_button.html' with book=book pulldown=shelf_pulldown %}
|