{% extends 'layout.html' %} {% load fr_display %} {% block content %}

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

{% if book.parent_work %}

Edition of {{ book.parent_work.title }}

{% endif %}
{% include 'snippets/book_cover.html' with book=book size=large %}

{{ active_tab }} rating: {{ rating | stars }}

{% if book.description %}
{{ book.description | description }}
{% endif %}
{% for tag in tags %} {% include 'snippets/tag.html' with tag=tag user=request.user user_tags=user_tag_names %} {% endfor %}

Leave a review

{% csrf_token %} {{ review_form.as_p }}
{% include 'snippets/tabs.html' with tabs=feed_tabs active_tab=active_tab path=path %}
{% if not reviews %}

No reviews yet!

{% endif %} {% for review in reviews %}
{% include 'snippets/status.html' with status=review hide_book=True depth=1 %}
{% endfor %} {% endblock %}