{% extends 'layout.html' %} {% load humanize %} {% load fr_display %} {% block content %}
{% for shelf in shelves %}

{{ shelf.name }}

{% if shelf.books %} {% for book in shelf.books.all %} {% endfor %}
Cover Title Author Published Shelved External links Rating
{% include 'snippets/book_cover.html' with book=book %} {{ book.data.title }} {{ book.authors.first.data.name }} {{ book.data.first_publish_date }} {{ book.added_date | naturalday }} OpenLibrary {{ ratings | dict_key:book.id | stars}}
{% else %}

This shelf is empty.

{% endif %}
{% endfor %}
{% endblock %}