{% extends 'layout.html' %} {% load i18n %} {% load bookwyrm_tags %} {% block title %}{{ list.name }}{% endblock %} {% block content %}

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

{% include 'lists/created_text.html' with list=list %}

{% include 'snippets/trimmed_text.html' with full=list.description %}
{% if request.user == list.user %}
{% trans "Edit List" as button_text %} {% include 'snippets/toggle/open_button.html' with text=button_text 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 %}