2021-01-29 08:51:36 -08:00
|
|
|
{% extends 'components/dropdown.html' %}
|
2022-01-18 11:20:27 -08:00
|
|
|
{% load shelf_tags %}
|
2021-11-20 08:06:13 +11:00
|
|
|
{% load utilities %}
|
2022-01-18 11:20:27 -08:00
|
|
|
{% load i18n %}
|
2021-11-15 20:59:22 +11:00
|
|
|
|
2021-01-17 11:09:49 -08:00
|
|
|
{% block dropdown-trigger %}
|
2021-03-31 09:22:23 -07:00
|
|
|
<span>{% trans "Move book" %}</span>
|
2021-01-17 11:09:49 -08:00
|
|
|
<span class="icon icon-arrow-down" aria-hidden="true"></span>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block dropdown-list %}
|
2021-11-20 08:06:13 +11:00
|
|
|
{% with book.id|uuid as uuid %}
|
|
|
|
{% active_shelf book as active_shelf %}
|
2021-11-20 10:29:17 +11:00
|
|
|
{% latest_read_through book request.user as readthrough %}
|
|
|
|
|
2021-05-22 17:58:08 -07:00
|
|
|
{% for shelf in user_shelves %}
|
2021-11-20 08:06:13 +11:00
|
|
|
|
2021-11-16 19:26:49 +11:00
|
|
|
{% if shelf.editable %}
|
2021-04-21 19:35:50 +02:00
|
|
|
<li role="menuitem" class="dropdown-item p-0">
|
2022-01-20 14:03:38 -08:00
|
|
|
<form name="editable-shelve-{{ uuid }}" action="/shelve/" method="post">
|
2021-01-17 11:09:49 -08:00
|
|
|
{% csrf_token %}
|
|
|
|
<input type="hidden" name="book" value="{{ book.id }}">
|
2021-03-31 15:00:49 -07:00
|
|
|
<input type="hidden" name="change-shelf-from" value="{{ current.identifier }}">
|
2021-01-17 11:09:49 -08:00
|
|
|
<input type="hidden" name="shelf" value="{{ shelf.identifier }}">
|
2021-12-02 12:25:19 -08:00
|
|
|
|
2022-02-19 16:34:17 -08:00
|
|
|
<button class="button is-fullwidth is-small shelf-option is-radiusless has-background-body" type="submit" {% if shelf.identifier == current.identifier %}disabled{% endif %}>
|
2021-12-01 20:07:52 +11:00
|
|
|
<span>
|
2022-01-11 12:10:30 -08:00
|
|
|
{% include "snippets/translated_shelf_name.html" with shelf=shelf %}
|
2021-12-01 20:07:52 +11:00
|
|
|
</span>
|
|
|
|
</button>
|
2021-01-17 11:09:49 -08:00
|
|
|
</form>
|
|
|
|
</li>
|
2021-11-20 08:06:13 +11:00
|
|
|
{% else%}
|
2021-11-20 08:18:43 +11:00
|
|
|
{% comparison_bool shelf.identifier active_shelf.shelf.identifier as is_current %}
|
2022-02-19 16:34:17 -08:00
|
|
|
{% with button_class="is-fullwidth is-small shelf-option is-radiusless has-background-body" %}
|
2021-11-20 08:06:13 +11:00
|
|
|
<li role="menuitem" class="dropdown-item p-0">
|
|
|
|
{% if shelf.identifier == 'reading' %}
|
|
|
|
|
|
|
|
{% trans "Start reading" as button_text %}
|
|
|
|
{% url 'reading-status' 'start' book.id as fallback_url %}
|
2022-01-11 13:10:25 -08:00
|
|
|
{% join "start_reading" uuid as modal_id %}
|
|
|
|
{% include 'snippets/shelve_button/modal_button.html' with class=button_class fallback_url=fallback_url %}
|
2021-11-20 08:06:13 +11:00
|
|
|
|
|
|
|
|
|
|
|
{% elif shelf.identifier == 'read' %}
|
|
|
|
|
|
|
|
{% trans "Read" as button_text %}
|
|
|
|
{% url 'reading-status' 'finish' book.id as fallback_url %}
|
2022-01-11 13:10:25 -08:00
|
|
|
{% join "finish_reading" uuid as modal_id %}
|
|
|
|
{% include 'snippets/shelve_button/modal_button.html' with class=button_class fallback_url=fallback_url %}
|
2021-11-20 08:06:13 +11:00
|
|
|
|
2022-02-12 19:44:06 +01:00
|
|
|
{% elif shelf.identifier == 'stopped-reading' %}
|
2022-02-11 14:33:46 +01:00
|
|
|
|
2022-02-12 19:44:06 +01:00
|
|
|
{% trans "Stopped reading" as button_text %}
|
2022-02-11 14:33:46 +01:00
|
|
|
{% url 'reading-status' 'stop' book.id as fallback_url %}
|
2022-02-12 19:44:06 +01:00
|
|
|
{% join "stop_reading" uuid as modal_id %}
|
2022-02-11 14:33:46 +01:00
|
|
|
{% include 'snippets/shelve_button/modal_button.html' with class=button_class fallback_url=fallback_url %}
|
|
|
|
|
2021-11-20 08:06:13 +11:00
|
|
|
{% elif shelf.identifier == 'to-read' %}
|
|
|
|
|
|
|
|
{% trans "Want to read" as button_text %}
|
|
|
|
{% url 'reading-status' 'want' book.id as fallback_url %}
|
2022-01-11 13:10:25 -08:00
|
|
|
{% join "want_to_read" uuid as modal_id %}
|
|
|
|
{% include 'snippets/shelve_button/modal_button.html' with class=button_class fallback_url=fallback_url %}
|
2021-11-20 08:06:13 +11:00
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
</li>
|
|
|
|
{% endwith %}
|
2021-11-15 20:59:22 +11:00
|
|
|
{% endif %}
|
2021-01-17 11:09:49 -08:00
|
|
|
{% endfor %}
|
2021-11-25 07:38:08 +11:00
|
|
|
|
|
|
|
{% if shelf.identifier == 'all' %}
|
2022-01-02 13:09:40 +11:00
|
|
|
{% for user_shelf in user_shelves %}
|
|
|
|
{% if user_shelf in book.shelves.all %}
|
2021-11-25 07:38:08 +11:00
|
|
|
<li class="navbar-divider m-0" role="separator" ></li>
|
2021-04-21 19:35:50 +02:00
|
|
|
<li role="menuitem" class="dropdown-item p-0">
|
2022-01-20 14:03:38 -08:00
|
|
|
<form name="shelve-{{ user_shelf.identifier }}-{{ book.id }}-{{ uuid }}" action="/unshelve/" method="post">
|
2021-01-17 11:09:49 -08:00
|
|
|
{% csrf_token %}
|
|
|
|
<input type="hidden" name="book" value="{{ book.id }}">
|
2022-01-02 13:09:40 +11:00
|
|
|
<input type="hidden" name="shelf" value="{{ user_shelf.id }}">
|
2022-02-28 11:07:12 -08:00
|
|
|
<button class="button is-fullwidth is-small is-radiusless is-danger is-light" type="submit">
|
2022-02-28 11:17:52 -08:00
|
|
|
{% blocktrans with name=user_shelf|translate_shelf_name %}Remove from {{ name }}{% endblocktrans %}
|
2022-02-28 11:07:12 -08:00
|
|
|
</button>
|
2021-01-17 11:09:49 -08:00
|
|
|
</form>
|
|
|
|
</li>
|
2022-01-02 13:09:40 +11:00
|
|
|
{% endif %}
|
2021-11-25 07:38:08 +11:00
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<li class="navbar-divider" role="separator" ></li>
|
2021-04-21 19:35:50 +02:00
|
|
|
<li role="menuitem" class="dropdown-item p-0">
|
2022-01-20 14:03:38 -08:00
|
|
|
<form name="un-shelve-{{ shelf.identifier }}-{{ book.id }}-{{ uuid }}" action="/unshelve/" method="post">
|
2021-01-17 11:09:49 -08:00
|
|
|
{% csrf_token %}
|
|
|
|
<input type="hidden" name="book" value="{{ book.id }}">
|
2021-11-25 07:38:08 +11:00
|
|
|
<input type="hidden" name="shelf" value="{{ shelf.id }}">
|
|
|
|
<button class="button is-fullwidth is-small is-radiusless is-danger is-light" type="submit">{% trans "Remove from" %} {{ shelf.name }}</button>
|
2021-01-17 11:09:49 -08:00
|
|
|
</form>
|
|
|
|
</li>
|
2021-11-25 07:38:08 +11:00
|
|
|
{% endif %}
|
2021-11-20 08:06:13 +11:00
|
|
|
|
2021-12-30 18:06:33 -08:00
|
|
|
{% join "want_to_read" uuid as modal_id %}
|
|
|
|
{% include 'snippets/reading_modals/want_to_read_modal.html' with book=active_shelf.book id=modal_id move_from=current.id refresh=True class="" %}
|
2021-11-20 08:06:13 +11:00
|
|
|
|
2021-12-30 18:06:33 -08:00
|
|
|
{% join "start_reading" uuid as modal_id %}
|
|
|
|
{% include 'snippets/reading_modals/start_reading_modal.html' with book=active_shelf.book id=modal_id move_from=current.id refresh=True class="" %}
|
2021-11-20 08:06:13 +11:00
|
|
|
|
2021-12-30 18:06:33 -08:00
|
|
|
{% join "finish_reading" uuid as modal_id %}
|
2022-01-11 13:10:25 -08:00
|
|
|
{% include 'snippets/reading_modals/finish_reading_modal.html' with book=active_shelf.book id=modal_id move_from=current.id readthrough=readthrough refresh=True class="" %}
|
2021-11-20 08:06:13 +11:00
|
|
|
|
2022-02-12 19:44:06 +01:00
|
|
|
{% join "stop_reading" uuid as modal_id %}
|
|
|
|
{% include 'snippets/reading_modals/stop_reading_modal.html' with book=active_shelf.book id=modal_id move_from=current.id readthrough=readthrough refresh=True class="" %}
|
2022-02-11 14:33:46 +01:00
|
|
|
|
2021-11-20 08:06:13 +11:00
|
|
|
{% endwith %}
|
2021-01-17 11:09:49 -08:00
|
|
|
{% endblock %}
|