diff --git a/bookwyrm/templates/snippets/shelve_button.html b/bookwyrm/templates/snippets/shelve_button.html
index 22c382b5..35b860c6 100644
--- a/bookwyrm/templates/snippets/shelve_button.html
+++ b/bookwyrm/templates/snippets/shelve_button.html
@@ -3,29 +3,31 @@
{% with book.id|uuid as uuid %}
{% active_shelf book as active_shelf %}
-
- {% if switch_mode and active_shelf.book != book %}
- {% include 'snippets/switch_edition_button.html' with edition=book size='is-small' %}
- {% else %}
+
+
+ {% if switch_mode and active_shelf.book != book %}
+ {% include 'snippets/switch_edition_button.html' with edition=book size='is-small' %}
+ {% else %}
- {% if active_shelf.shelf.identifier == 'read' %}
-
- {% elif active_shelf.shelf.identifier == 'reading' %}
- {% include 'snippets/toggle/toggle_button.html' with class="is-small" text="I'm done!" controls_text="finish-reading" controls_uid=uuid %}
- {% elif active_shelf.shelf.identifier == 'to-read' %}
- {% include 'snippets/toggle/toggle_button.html' with class="is-small" text="Start reading" controls_text="start-reading" controls_uid=uuid %}
- {% else %}
-
- {% endif %}
+ {% if active_shelf.shelf.identifier == 'read' %}
+
+ {% elif active_shelf.shelf.identifier == 'reading' %}
+ {% include 'snippets/toggle/toggle_button.html' with class="is-small" text="I'm done!" controls_text="finish-reading" controls_uid=uuid %}
+ {% elif active_shelf.shelf.identifier == 'to-read' %}
+ {% include 'snippets/toggle/toggle_button.html' with class="is-small" text="Start reading" controls_text="start-reading" controls_uid=uuid %}
+ {% else %}
+
+ {% endif %}
+