moviewyrm/fedireads/templates/snippets/shelve_button.html

23 lines
1 KiB
HTML
Raw Normal View History

2020-02-21 23:39:25 +00:00
{% load fr_display %}
{% if request.user.is_authenticated %}
<div class="dropdown secondary">
<form name="shelve" action="/shelve/" method="post">
2020-02-21 23:39:25 +00:00
{% csrf_token %}
<input type="hidden" name="book" value="{{ book.id }}"></input>
<input type="hidden" name="shelf" value="{% shelve_button_identifier book %}"></input>
<button class="dropdown-button" type="submit" style="">{% shelve_button_text book %}</button></form><div class="dropdown-arrow" style="display: inline;"><button class="dropdown-button">&dArr;</button>
<div class="dropdown-content">
<form name="shelve" action="/shelve/" method="post">
{% csrf_token %}
<input type="hidden" name="book" value="{{ book.id }}"></input>
{% for shelf in request.user.shelf_set.all %}
2020-04-09 10:23:08 +00:00
<button class="secondary" name="shelf" type="submit" value="{{ shelf.identifier }}" {% if shelf in book.shelf_set.all %} disabled {% endif %}>{{ shelf.name }} {% if shelf in book.shelf_set.all %} ✓ {% endif %}</button>
{% endfor %}
</form>
</div>
</div>
</div>
2020-02-21 23:39:25 +00:00
{% endif %}