forked from mirrors/bookwyrm
3d3ab6433e
About 50 fewer queries (yikes)
29 lines
1.3 KiB
HTML
29 lines
1.3 KiB
HTML
{% extends 'components/dropdown.html' %}
|
|
{% load i18n %}
|
|
{% block dropdown-trigger %}
|
|
<span>{% trans "Move book" %}</span>
|
|
<span class="icon icon-arrow-down" aria-hidden="true"></span>
|
|
{% endblock %}
|
|
|
|
{% block dropdown-list %}
|
|
{% for shelf in user_shelves %}
|
|
<li role="menuitem" class="dropdown-item p-0">
|
|
<form name="shelve" action="/shelve/" method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="book" value="{{ book.id }}">
|
|
<input type="hidden" name="change-shelf-from" value="{{ current.identifier }}">
|
|
<input type="hidden" name="shelf" value="{{ shelf.identifier }}">
|
|
<button class="button is-fullwidth is-small shelf-option is-radiusless is-white" type="submit" {% if shelf.identifier == current.identifier %}disabled{% endif %}><span>{{ shelf.name }}</span></button>
|
|
</form>
|
|
</li>
|
|
{% endfor %}
|
|
<li class="navbar-divider" role="separator"></li>
|
|
<li role="menuitem" class="dropdown-item p-0">
|
|
<form name="shelve" action="/unshelve/" method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="book" value="{{ book.id }}">
|
|
<input type="hidden" name="shelf" value="{{ current.id }}">
|
|
<button class="button is-fullwidth is-small is-radiusless is-danger is-light" type="submit">{% trans "Remove" %}</button>
|
|
</form>
|
|
</li>
|
|
{% endblock %}
|