{% extends 'user/user_layout.html' %} {% load bookwyrm_tags %} {% block header %}

{% if is_self %}Your {% else %} {% include 'snippets/username.html' with user=user possessive=True %} {% endif %} shelves

{% endblock %} {% block panel %}
{% if is_self %}
{% include 'snippets/toggle/open_button.html' with text="Create shelf" icon="plus" controls_text="create-shelf-form" focus="create-shelf-form-header" %}
{% endif %}
{% include 'user/create_shelf_form.html' with controls_text='create-shelf-form' %}

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

{% if is_self %}
{% include 'snippets/toggle/open_button.html' with text="Edit shelf" icon="pencil" controls_text="edit-shelf-form" focus="edit-shelf-form-header" %}
{% endif %}
{% include 'user/edit_shelf_form.html' with controls_text="edit-shelf-form" %}
{% include 'snippets/shelf.html' with shelf=shelf books=books ratings=ratings %}
{% endblock %}