2021-01-29 16:51:36 +00:00
|
|
|
{% extends 'components/dropdown.html' %}
|
2021-02-28 02:48:10 +00:00
|
|
|
{% load i18n %}
|
2021-01-18 00:48:05 +00:00
|
|
|
{% block dropdown-trigger %}
|
|
|
|
<span class="icon icon-arrow-down">
|
2021-02-28 02:48:10 +00:00
|
|
|
<span class="is-sr-only">{% trans "More shelves" %}</span>
|
2021-01-18 00:48:05 +00:00
|
|
|
</span>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block dropdown-list %}
|
2021-01-31 00:01:36 +00:00
|
|
|
{% include 'snippets/shelve_button/shelve_button_options.html' with active_shelf=active_shelf shelves=request.user.shelf_set.all dropdown=True class="shelf-option is-fullwidth is-small" %}
|
2021-01-18 00:48:05 +00:00
|
|
|
{% endblock %}
|