diff --git a/bookwyrm/templates/snippets/readthrough.html b/bookwyrm/templates/snippets/readthrough.html
index e0b25d8b..7e51ce97 100644
--- a/bookwyrm/templates/snippets/readthrough.html
+++ b/bookwyrm/templates/snippets/readthrough.html
@@ -6,10 +6,11 @@
                 Progress Updates:
                 
                 
-                    {% if readthrough.progress %}
+                    {% if readthrough.finish_date or readthrough.progress %}
                     - {% if readthrough.finish_date %} {{ readthrough.finish_date | naturalday }}: finished {% else %}{% if readthrough.progress_mode == 'PG' %}on page {{ readthrough.progress }}{% if book.pages %} of {{ book.pages }}{% endif %}
                         {% else %}{{ readthrough.progress }}%{% endif %}{% endif %}
-                    {% include 'snippets/toggle/toggle_button.html' with text="Show all updates" controls_text="updates" controls_uid=readthrough.id class="is-small" %}
+                        {% if readthrough.progress %}
+                        {% include 'snippets/toggle/toggle_button.html' with text="Show all updates" controls_text="updates" controls_uid=readthrough.id class="is-small" %}
                         
                             {% for progress_update in readthrough.progress_updates %}
                             - 
@@ -31,6 +32,7 @@
                             {% endfor %}
 +                        {% endif %}
{% endif %}- {{ readthrough.start_date | naturalday }}: started