diff --git a/bookwyrm/templates/book.html b/bookwyrm/templates/book.html index db386442..ab4d6eec 100644 --- a/bookwyrm/templates/book.html +++ b/bookwyrm/templates/book.html @@ -76,8 +76,12 @@
{{ readthrough.finish_date | naturalday }}
{% elif readthrough.pages_read %}
On page:
-
{{ readthrough.pages_read}} of {{ book.pages }}
+
{{ readthrough.pages_read }} of {{ book.pages }}
{% endif %} + {% for progress_update in readthrough.progress_updates %} +
On {{ progress_update.date | naturalday }} you were on:
+
{{ progress_update.progress }} of {{ book.pages }}
+ {% endfor %}