2021-01-30 19:52:31 +00:00
{% load bookwyrm_tags %}
2021-05-11 21:41:28 +00:00
{% load utilities %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
2021-05-11 21:41:28 +00:00
2021-01-30 19:52:31 +00:00
{% for shelf in shelves %}
{% comparison_bool shelf.identifier active_shelf.shelf.identifier as is_current %}
2021-04-21 17:35:50 +00:00
{% if dropdown %}< li role = "menuitem" class = "dropdown-item p-0" > {% endif %}
2021-04-21 19:35:42 +00:00
< div class = "{% if not dropdown and active_shelf.shelf.identifier|next_shelf != shelf.identifier %}is-hidden{% endif %}" >
2021-01-30 23:46:20 +00:00
{% if shelf.identifier == 'reading' %}{% if not dropdown or active_shelf.shelf.identifier|next_shelf != shelf.identifier %}
2021-06-08 19:40:01 +00:00
2021-03-01 01:10:30 +00:00
{% trans "Start reading" as button_text %}
2021-06-09 18:16:52 +00:00
{% url 'reading-status' 'start' book.id as fallback_url %}
2021-08-09 01:40:47 +00:00
{% include 'snippets/toggle/toggle_button.html' with class=class text=button_text controls_text="start_reading" controls_uid=button_uuid focus="modal_title_start_reading" disabled=is_current fallback_url=fallback_url %}
2021-06-08 19:40:01 +00:00
2021-01-30 23:46:20 +00:00
{% endif %}{% elif shelf.identifier == 'read' and active_shelf.shelf.identifier == 'read' %}{% if not dropdown or active_shelf.shelf.identifier|next_shelf != shelf.identifier %}
2021-02-28 02:48:10 +00:00
< button type = "button" class = "button {{ class }}" disabled > < span > {% trans "Read" %}< / span >
2021-01-30 23:46:20 +00:00
{% endif %}{% elif shelf.identifier == 'read' %}{% if not dropdown or active_shelf.shelf.identifier|next_shelf != shelf.identifier %}
2021-06-08 19:40:01 +00:00
2021-03-01 01:10:30 +00:00
{% trans "Finish reading" as button_text %}
2021-06-09 18:16:52 +00:00
{% url 'reading-status' 'finish' book.id as fallback_url %}
2021-08-09 01:40:47 +00:00
{% include 'snippets/toggle/toggle_button.html' with class=class text=button_text controls_text="finish_reading" controls_uid=button_uuid focus="modal_title_finish_reading" disabled=is_current fallback_url=fallback_url %}
2021-06-08 19:40:01 +00:00
2021-01-30 23:46:20 +00:00
{% endif %}{% elif shelf.identifier == 'to-read' %}{% if not dropdown or active_shelf.shelf.identifier|next_shelf != shelf.identifier %}
2021-06-08 19:40:01 +00:00
2021-03-01 01:10:30 +00:00
{% trans "Want to read" as button_text %}
2021-06-09 18:16:52 +00:00
{% url 'reading-status' 'want' book.id as fallback_url %}
2021-08-09 01:40:47 +00:00
{% include 'snippets/toggle/toggle_button.html' with class=class text=button_text controls_text="want_to_read" controls_uid=button_uuid focus="modal_title_want_to_read" disabled=is_current fallback_url=fallback_url %}
2021-06-08 19:40:01 +00:00
2021-01-30 23:46:20 +00:00
{% endif %}{% elif shelf.editable %}
2021-01-30 19:52:31 +00:00
< form name = "shelve" action = "/shelve/" method = "post" >
{% csrf_token %}
< input type = "hidden" name = "book" value = "{{ active_shelf.book.id }}" >
< button class = "button {{ class }}" name = "shelf" type = "submit" value = "{{ shelf.identifier }}" { % if shelf in book . shelf_set . all % } disabled { % endif % } >
< span > {{ shelf.name }}< / span >
< / button >
< / form >
{% endif %}
< / div >
{% if dropdown %}< / li > {% endif %}
{% endfor %}
2021-03-21 00:18:18 +00:00
{% if dropdown %}
2021-03-29 19:27:12 +00:00
{% if readthrough and active_shelf.shelf.identifier != 'read' %}
2021-04-21 17:35:50 +00:00
< li role = "menuitem" class = "dropdown-item p-0" >
{% trans "Update progress" as button_text %}
2021-08-09 01:40:47 +00:00
{% include 'snippets/toggle/toggle_button.html' with class=class text=button_text controls_text="progress_update" controls_uid=button_uuid focus="modal_title_progress_update" %}
2021-03-21 00:18:18 +00:00
< / li >
{% endif %}
2021-03-29 19:27:12 +00:00
{% if active_shelf.shelf %}
2021-04-21 17:35:50 +00:00
< li role = "menuitem" class = "dropdown-item p-0" >
< form name = "shelve" action = "/unshelve/" method = "post" >
{% csrf_token %}
< input type = "hidden" name = "book" value = "{{ active_shelf.book.id }}" >
< input type = "hidden" name = "shelf" value = "{{ active_shelf.shelf.id }}" >
2021-06-08 19:40:01 +00:00
< button class = "button is-fullwidth is-small{% if dropdown %} is-radiusless{% endif %} is-danger is-light" type = "submit" >
{% blocktrans with name=active_shelf.shelf.name %}Remove from {{ name }}{% endblocktrans %}
< / button >
2021-04-21 17:35:50 +00:00
< / form >
2021-03-29 19:27:12 +00:00
< / li >
{% endif %}
{% endif %}