{% load bookwyrm_tags %} {% load i18n %} {% if book %}
{% include 'snippets/book_cover.html' with book=book size="large" %} {% include 'snippets/stars.html' with rating=book|rating:request.user %}

{{ book.title }}

{% if book.authors %}

{% trans "by" %} {% include 'snippets/authors.html' with book=book %}

{% endif %} {% if book|book_description %}
{{ book|book_description|to_markdown|safe|truncatewords_html:50 }}
{% endif %}
{% endif %}