{% extends "base.html" %} {% block title %}{{ book.title }}{% endblock %} {% block content %}

My books  /  {{ book.title }}

{{ book.title }}

{{ book.title }}

by {{ book.author }}

{% if book.status == 'reading' %} Reading {% elif book.status == 'finished' %} Finished {% else %} Want to read {% endif %}

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 %}

{% if book.notes %}

Notes

{{ book.notes }}
{% endif %}
{% endblock %}