diff --git a/bookwyrm/templates/lists/list.html b/bookwyrm/templates/lists/list.html index a9f8e5c0..f6c6f9f5 100644 --- a/bookwyrm/templates/lists/list.html +++ b/bookwyrm/templates/lists/list.html @@ -18,18 +18,29 @@ {% else %}
    {% for item in items %} -
  1. +
  2. -
    -
    - {% include 'snippets/book_cover.html' with book=item.book size="medium" %} + {% with book=item.book %} +
    + + +
    + {% include 'snippets/book_titleby.html' %} + {% include 'snippets/stars.html' with rating=item.book|rating:request.user %} + {% include 'snippets/shelve_button/shelve_button.html' %} +
    -
    - {% include 'snippets/book_titleby.html' with book=item.book %} - {% include 'snippets/stars.html' with rating=item.book|rating:request.user %} - {% include 'snippets/shelve_button/shelve_button.html' with book=item.book %} -
    -
    + {% endwith %} +