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

12 lines
462 B
HTML
Raw Normal View History

2021-01-29 11:51:36 -05:00
{% extends 'components/dropdown.html' %}
2021-02-27 21:48:10 -05:00
{% load i18n %}
{% block dropdown-trigger %}
<span class="icon icon-arrow-down">
2021-02-27 21:48:10 -05:00
<span class="is-sr-only">{% trans "More shelves" %}</span>
</span>
{% endblock %}
{% block dropdown-list %}
2021-04-21 13:36:11 -04: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 %}