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

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

{% include 'snippets/user_header.html' with user=user %}
{% if is_self %}
{% include 'snippets/toggle/open_button.html' with text="Create shelf" icon="plus" class="is-clickable" controls_text="create-shelf-form" %}
{% endif %}

{{ 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" class="is-clickable" controls_text="edit-shelf-form" %}
{% endif %}
{% include 'snippets/shelf.html' with shelf=shelf books=books ratings=ratings %}
{% endblock %}