forked from mirrors/bookwyrm
11 lines
457 B
HTML
11 lines
457 B
HTML
{% extends 'components/dropdown.html' %}
|
|
{% load i18n %}
|
|
{% block dropdown-trigger %}
|
|
<span class="icon icon-arrow-down">
|
|
<span class="is-sr-only">{% trans "More shelves" %}</span>
|
|
</span>
|
|
{% endblock %}
|
|
|
|
{% block dropdown-list %}
|
|
{% include 'snippets/shelve_button/shelve_button_dropdown_options.html' with active_shelf=active_shelf shelves=user_shelves dropdown=True class="shelf-option is-fullwidth is-small is-radiusless is-white" %}
|
|
{% endblock %}
|