{% extends "books/base_books.html" %} {% block title %}{{ object.full_title }}{% endblock %} {% block content_title %}

Books

{% include "books/_nav.html" %} {% endblock %} {% block content %} {% load markup %}

{{ object.full_title }} {% if object.subtitle %}{{ object.subtitle }}{% endif %}

{% if object.cover %} Book cover {% else %}
{% endif %} {% if object.review %}

Review

{{ object.review|markdown }}
{% endif %} {% if object.highlight_set.all %}

Highlights

{% for highlight in object.highlight_set.all %}
{{ highlight.highlight|markdown }} {% if highlight.page %}

— p. {{ highlight.page }}

{% endif %}

{% endfor %}
{% endif %} {% endblock %}