{% load fr_display %}
{% for shelf in shelves %} {% if shelf.books %}

{{ shelf.name }} {% if shelf.size > shelf.books|length %} (See all {{ shelf.size }}) {% endif %}

{% for book in shelf.books %}
{% include 'snippets/shelve_button.html' with book=book %}
{% endfor %}
{% endif %} {% endfor %}
{% for shelf in shelves %} {% for book in shelf.books %}

{% include 'snippets/avatar.html' with user=user %} Your thoughts on a {{ book.title }} by {% include 'snippets/authors.html' with book=book %}

{% include 'snippets/create_status.html' with book=book user=request.user %}
{% endfor %} {% endfor %}