diff --git a/bookwyrm/templates/book/book.html b/bookwyrm/templates/book/book.html
index 20e4d8127..40da64861 100644
--- a/bookwyrm/templates/book/book.html
+++ b/bookwyrm/templates/book/book.html
@@ -193,6 +193,82 @@
{% include 'snippets/create_status.html' with book=book hide_cover=True %}
{% endif %}
+
+ {% if request.user.is_authenticated %}
+ {% if user_statuses.review_count or user_statuses.comment_count or user_stuatses.quotation_count %}
+
+ {% endif %}
+ {% endif %}
+
+ {% for review in statuses %}
+
+ {% with status=review hide_book=True depth=1 %}
+ {% include 'snippets/status/status.html' %}
+ {% endwith %}
+
+ {% endfor %}
+
+
+ {% for rating in ratings %}
+ {% with user=rating.user %}
+
+ {% endwith %}
+ {% endfor %}
+
+
+ {% include 'snippets/pagination.html' with page=statuses path=request.path anchor="#reviews" %}
+
+
{% if book.subjects %}
@@ -251,82 +327,6 @@
-
- {% if request.user.is_authenticated %}
- {% if user_statuses.review_count or user_statuses.comment_count or user_stuatses.quotation_count %}
-
- {% endif %}
- {% endif %}
-
- {% for review in statuses %}
-
- {% with status=review hide_book=True depth=1 %}
- {% include 'snippets/status/status.html' %}
- {% endwith %}
-
- {% endfor %}
-
-
- {% for rating in ratings %}
- {% with user=rating.user %}
-
- {% endwith %}
- {% endfor %}
-
-
- {% include 'snippets/pagination.html' with page=statuses path=request.path anchor="#reviews" %}
-
-
{% endwith %}
{% endblock %}