{% extends 'layout.html' %} {% block content %} Lists {% if request.user.is_authenticated %} Your lists {% include 'snippets/toggle/open_button.html' with controls_text="create-list" icon="plus" text="Create new list" %} Create list {% csrf_token %} Name: {{ list_form.name }} Description: {{ list_form.description }} List curation: Closed Only you can add and remove books to this list Curated Anyone can suggest books, subject to your approval Open Anyone can add books to this list, but only you can remove them {% include 'snippets/privacy_select.html' %} Save {% include 'snippets/toggle/close_button.html' with controls_text='create-list' text="Cancel" %} {% if request.user.list_set.exists %} {% for list in request.user.list_set.all %} {% include 'lists/list-item.html' with list=list %} {% endfor %} {% endif %} {% endif %} {% if lists.exists %} Recent Lists {% for list in lists %} {% include 'lists/list-item.html' with list=list %} {% endfor %} {% endif %} {% endblock %}
Only you can add and remove books to this list
Anyone can suggest books, subject to your approval
Anyone can add books to this list, but only you can remove them