{% extends 'layout.html' %} {% block content %}

{{ list.name }} {% include 'snippets/privacy-icons.html' with item=list %}

{% include 'snippets/trimmed_text.html' with full=list.description %}
{% include 'snippets/toggle/open_button.html' with text="Edit list" icon="pencil" controls_text="edit-list" %}

Books

{% if not list.books.exists %}

This list is currently empty

{% else %} {% for book in list.books.all %} {{ book }} {% endfor %} {% endif %}

Add Books

{% for book in suggested_books %}

{% include 'snippets/book_titleby.html' with book=book %}

{% csrf_token %}
{% endfor %}
{% endblock %}