{% load i18n %}
{% trans "Your shelves with books" %}
{% if shelves %}
{% for shelf in shelves %}
{% trans "remove" %}
{{ shelf.name }} ({{ shelf.get_count }})
{% endfor %}
{% else %}
{% trans "You do not own any shelves. You can create one below if you want to" %}.
{% endif %}
{{ new_set_form.name }}