{% extends "bookkeeper/base.html" %} {% load static %} {% block title %}{{ book.title }} — Bookkeeper{% endblock %} {% block content %}
{% with cover_url=user_book.effective_cover_url %} {% if cover_url %} {{ book.title }} cover {% else %}
{{ book.get_format_display }}
{% endif %} {% endwith %}
{% if progress and progress.percentage > 0 %} Continue Reading {% else %} Start Reading {% endif %} {% if progress and progress.percentage > 0 %}
{{ progress.percentage|floatformat:0 }}% · p.{{ progress.page_number }}
{% endif %}
{% if user == book.added_by %} Edit Details {% endif %} {% if not user_book.is_finished %} {% else %} Finished ✓ {% endif %}

{{ book.title }}

{% if book.author %}

by {{ book.author }}

{% endif %}
{% for i in "12345" %} {% endfor %}
{% if book.publisher %}
Publisher
{{ book.publisher }}
{% endif %} {% if book.published_date %}
Published
{{ book.published_date }}
{% endif %} {% if book.isbn %}
ISBN
{{ book.isbn }}
{% endif %}
Format
{{ book.get_format_display }}
{% if book.page_count %}
Pages
{{ book.page_count }}
{% endif %} {% if book.language %}
Language
{{ book.language|upper }}
{% endif %}
Added
{{ book.created_at|date:"N j, Y" }}
{% if book.description %}

About this book

{{ book.description }}

{% endif %} {% if book.amazon_url %}
Buy on Amazon

As an Amazon Associate, we earn from qualifying purchases.

{% endif %} {% if bookmarks %}

Bookmarks ({{ bookmarks.count }})

{% endif %} {% if highlights %}

Highlights ({{ highlights.count }})

    {% for hl in highlights %}
  • {{ hl.text|truncatewords:30 }}
    {% if hl.note %}

    {{ hl.note }}

    {% endif %} p.{{ hl.page_number }}
  • {% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}