2021-01-18 00:29:46 +00:00
|
|
|
{% load bookwyrm_tags %}
|
|
|
|
{% with 0|uuid as uuid %}
|
2021-01-18 00:48:05 +00:00
|
|
|
<div class="dropdown control{% if right %} is-right{% endif %}" id="menu-{{ uuid }}">
|
2021-01-18 00:29:46 +00:00
|
|
|
<button type="button" class="button dropdown-trigger pulldown-menu {{ class }}" aria-expanded="false" class="pulldown-menu" aria-haspopup="true" aria-controls="menu-options-{{ uuid }}" data-controls="menu-{{ uuid }}">
|
|
|
|
{% block dropdown-trigger %}{% endblock %}
|
|
|
|
</button>
|
|
|
|
<div class="dropdown-menu">
|
|
|
|
<ul class="dropdown-content" role="menu" id="menu-options-{{ book.id }}">
|
2021-01-17 19:09:49 +00:00
|
|
|
{% block dropdown-list %}{% endblock %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-01-18 00:29:46 +00:00
|
|
|
{% endwith %}
|