diff --git a/bookwyrm/templates/components/modal.html b/bookwyrm/templates/components/modal.html
index 72402914b..554f9ccde 100644
--- a/bookwyrm/templates/components/modal.html
+++ b/bookwyrm/templates/components/modal.html
@@ -8,15 +8,17 @@
{% include 'snippets/toggle/toggle_button.html' with label="close" class="delete" nonbutton=True %}
{% block modal-form-open %}{% endblock %}
+ {% if not no_body %}
{% block modal-body %}{% endblock %}
+ {% endif %}
{% block modal-form-close %}{% endblock %}
-
+
{% include 'snippets/toggle/toggle_button.html' with label="close" class="modal-close is-large" nonbutton=True %}
diff --git a/bookwyrm/templates/snippets/shelve_button.html b/bookwyrm/templates/snippets/shelve_button.html
index 946368c26..769da50fc 100644
--- a/bookwyrm/templates/snippets/shelve_button.html
+++ b/bookwyrm/templates/snippets/shelve_button.html
@@ -10,12 +10,14 @@
{% else %}
- {% include 'snippets/shelve_button_options.html' with class="shelf-option is-small" shelves=request.user.shelf_set.all active_shelf=active_shelf %}
+ {% include 'snippets/shelve_button_options.html' with class="shelf-option is-small" shelves=request.user.shelf_set.all active_shelf=active_shelf button_uuid=uuid %}
{% include 'snippets/shelve_button_dropdown.html' with class="is-small" button_uuid=uuid%}
{% endif %}
+{% include 'snippets/want_to_read_modal.html' with book=active_shelf.book controls_text="want-to-read" controls_uid=uuid no_body=True %}
+
{% include 'snippets/start_reading_modal.html' with book=active_shelf.book controls_text="start-reading" controls_uid=uuid %}
{% latest_read_through book request.user as readthrough %}
diff --git a/bookwyrm/templates/snippets/shelve_button_options.html b/bookwyrm/templates/snippets/shelve_button_options.html
index 84133400a..af47ee233 100644
--- a/bookwyrm/templates/snippets/shelve_button_options.html
+++ b/bookwyrm/templates/snippets/shelve_button_options.html
@@ -5,10 +5,12 @@
{% if shelf.identifier == 'reading' %}
{% include 'snippets/toggle/toggle_button.html' with class=class text="Start reading" controls_text="start-reading" controls_uid=button_uuid focus="modal-title-start-reading" disabled=is_current %}
+ {% elif shelf.identifier == 'read' and active_shelf.shelf.identifier == 'read' %}
+