{% extends 'layout.html' %} {% load i18n %} {% 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 %}

{% if request.user == list.user %} {% trans "Edit List" as button_text %} {% include 'snippets/toggle/open_button.html' with text=button_text icon_with_text="pencil" controls_text="edit_list" focus="edit_list_header" %} {% endif %} {% include "lists/bookmark_button.html" with list=list %}
{% block breadcrumbs %}{% endblock %}
{% include 'snippets/trimmed_text.html' with full=list.description %}
{% if request.user == list.user %} {% include 'lists/edit_form.html' with controls_text="edit_list" user_groups=user_groups %} {% endif %}
{% block panel %}{% endblock %} {% endblock %}