{% include 'snippets/book.html' with book=book size="small" %}
{% include 'snippets/shelve-button.html' with book=book %}
{% endfor %}
{% if shelf.size > shelf.books.count %}
See all {{ shelf.size }}
{% endif %}
{% endfor %}
{% else %}
Reading Activity
Start a book!
{% endif %}
Recently Added Books
{% for book in recent_books %}
{% include 'snippets/book.html' with book=book size="small" %}
{% if not book in user_books.all %}
{% include 'snippets/shelve-button.html' with book=book %}
{% endif %}