bookwyrm/bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html

12 lines
462 B
HTML
Raw Normal View History

2021-01-29 16:51:36 +00:00
{% extends 'components/dropdown.html' %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
{% 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>
</span>
{% endblock %}
{% block dropdown-list %}
2021-04-21 17:36:11 +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 is-radiusless is-white" %}
{% endblock %}