{% extends "base.html" %} {% block content %}

Add a book

{% if error %} {% endif %}

Books to read

{% if books %}
    {% for book in books %}
  1. {{ book.title }} by {{ book.author }} {{ "Read" if book.is_read else "Unread" }}
    {% if not book.is_read %}
    {% endif %}
  2. {% endfor %}
{% else %}

Your reading list is empty. Add a book to get started.

{% endif %}
{% endblock %}