{{ book.data.title }}
by
{% include 'snippets/authors.html' with book=book %}
{% include 'snippets/book_cover.html' with book=book size=large %}
{{ active_tab }} rating: {{ rating | stars }}
{% if description %}{{ book.data.description | description }}{% endif %} {% for review in user_reviews %} {% include 'snippets/review.html' with review=review %} {% endfor %}
{% for tag in tags %}
{% include 'snippets/tag.html' with tag=tag user=request.user user_tags=user_tag_names %}
{% endfor %}
Reviews
{% if not reviews %}No reviews yet!
{% endif %}Average rating: {{ rating | stars }}
{% for review in reviews %} {% include 'snippets/review.html' with review=review %} {% endfor %}