{% extends "base.html" %} {% block title %}{{ book.title }}{% endblock %} {% block content %}
My books / {{ book.title }}
by {{ book.author }}
Genre
{{ book.genre or '—' }}
Pages
{{ book.pages or '—' }}
Published
{{ book.year or '—' }}
Status
{% if book.status == 'reading' %}Reading {% elif book.status == 'finished' %}Finished {% else %}Want to read{% endif %}