2020-12-16 22:45:35 +00:00
|
|
|
<div class="columns is-multiline">
|
2020-09-30 23:20:50 +00:00
|
|
|
{% for book in books %}
|
|
|
|
<div class="column is-narrow">
|
|
|
|
<div class="box">
|
|
|
|
<a href="/book/{{ book.id }}">
|
|
|
|
{% include 'snippets/book_cover.html' with book=book %}
|
|
|
|
</a>
|
2020-12-16 22:45:35 +00:00
|
|
|
{% include 'snippets/shelve_button.html' with book=book switch_mode=True %}
|
2020-09-30 03:44:33 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-09-30 23:20:50 +00:00
|
|
|
{% endfor %}
|
2020-09-30 03:44:33 +00:00
|
|
|
</div>
|
|
|
|
|