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

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

Created {% if list.curation != 'open' %} and curated{% endif %} by {% include 'snippets/username.html' with user=list.user %}

{% include 'snippets/trimmed_text.html' with full=list.description %}
{% if request.user == list.user %}
{% include 'snippets/toggle/open_button.html' with text="Edit list" icon="pencil" controls_text="edit-list" focus="edit-list-header" %}
{% endif %}
{% include 'lists/edit_form.html' with controls_text="edit-list" %}
{% block panel %}{% endblock %} {% endblock %}