diff --git a/bookwyrm/templates/lists/list.html b/bookwyrm/templates/lists/list.html index 8764d61b..569b1747 100644 --- a/bookwyrm/templates/lists/list.html +++ b/bookwyrm/templates/lists/list.html @@ -3,35 +3,32 @@ {% block panel %} {% if request.user == list.user and pending_count %} -
+

{{ pending_count }} book{{ pending_count | pluralize }} awaiting your approval

{% endif %} -
+
{% if not items.exists %}

This list is currently empty

{% else %}
    {% for item in items %} -
  1. +
  2. -
    - {% include 'snippets/book_cover.html' with book=item.book size="medium" %} -
    +
    + +
    {% include 'snippets/book_titleby.html' with book=item.book %} {% include 'snippets/stars.html' with rating=item.book|rating:request.user %} {% include 'snippets/shelve_button.html' with book=item.book %}
    -
    - {% if item.note %} -
    - {% include 'snippets/trimmed_text.html' with full=item.note %}
    - {% endif %}