1
0
Fork 0

Shelve books from anywhere you see a book

This commit is contained in:
Mouse Reeve 2020-02-21 16:26:52 -08:00
parent 6c629be667
commit 78336531c9
7 changed files with 32 additions and 21 deletions

View file

@ -10,7 +10,6 @@
{% for book in shelf.books %}
<div class="book-preview">
{% include 'snippets/book.html' with book=book size="small" %}
{% include 'snippets/shelve-button.html' with book=book %}
</div>
{% endfor %}
{% if shelf.size > shelf.books.count %}
@ -29,9 +28,6 @@
{% for book in recent_books %}
<div class="book-preview">
{% 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 %}
</div>
{% endfor %}
</div>