{% extends 'bootstrap/base.html' %} {% block styles %} {{ super() }} {% endblock %} {% block title %}My Bookshelf{% endblock %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% if books %} {% for book in books %} {% endfor %}
# Cover Title Author Year Status Actions
{{ book.ranking }} {% if book.img_url %} {{ book.title }} {% else %}
{% endif %}
{{ book.title }} {{ book.author or 'N/A' }} {{ book.year or 'N/A' }} {% if book.status == 'read' %} Read {% elif book.status == 'reading' %} Currently Reading {% else %} To Read {% endif %}
{% else %}

Your bookshelf is empty.

Add books to get started!

Add a Book
{% endif %}
{% endblock %}