+
diff --git a/bookwyrm/templates/notifications/items/leave.html b/bookwyrm/templates/notifications/items/leave.html
index 422a31de..c17a1986 100644
--- a/bookwyrm/templates/notifications/items/leave.html
+++ b/bookwyrm/templates/notifications/items/leave.html
@@ -1,4 +1,4 @@
-{% extends 'notifications/items/item_layout.html' %}
+{% extends 'notifications/items/layout.html' %}
{% load i18n %}
{% load utilities %}
diff --git a/bookwyrm/templates/notifications/items/mention.html b/bookwyrm/templates/notifications/items/mention.html
index cda77163..ead3c8a6 100644
--- a/bookwyrm/templates/notifications/items/mention.html
+++ b/bookwyrm/templates/notifications/items/mention.html
@@ -1,4 +1,4 @@
-{% extends 'notifications/items/item_layout.html' %}
+{% extends 'notifications/items/layout.html' %}
{% load i18n %}
{% load utilities %}
diff --git a/bookwyrm/templates/notifications/items/remove.html b/bookwyrm/templates/notifications/items/remove.html
index eba18fd8..84160c7b 100644
--- a/bookwyrm/templates/notifications/items/remove.html
+++ b/bookwyrm/templates/notifications/items/remove.html
@@ -1,4 +1,4 @@
-{% extends 'notifications/items/item_layout.html' %}
+{% extends 'notifications/items/layout.html' %}
{% load i18n %}
{% load utilities %}
diff --git a/bookwyrm/templates/notifications/items/reply.html b/bookwyrm/templates/notifications/items/reply.html
index 883bbbb5..0aa664ce 100644
--- a/bookwyrm/templates/notifications/items/reply.html
+++ b/bookwyrm/templates/notifications/items/reply.html
@@ -1,4 +1,4 @@
-{% extends 'notifications/items/item_layout.html' %}
+{% extends 'notifications/items/layout.html' %}
{% load i18n %}
{% load utilities %}
diff --git a/bookwyrm/templates/notifications/items/report.html b/bookwyrm/templates/notifications/items/report.html
index f537b525..fdd5f009 100644
--- a/bookwyrm/templates/notifications/items/report.html
+++ b/bookwyrm/templates/notifications/items/report.html
@@ -1,4 +1,4 @@
-{% extends 'notifications/items/item_layout.html' %}
+{% extends 'notifications/items/layout.html' %}
{% load i18n %}
diff --git a/bookwyrm/templates/notifications/items/update.html b/bookwyrm/templates/notifications/items/update.html
index be796b78..7fc52cef 100644
--- a/bookwyrm/templates/notifications/items/update.html
+++ b/bookwyrm/templates/notifications/items/update.html
@@ -1,4 +1,4 @@
-{% extends 'notifications/items/item_layout.html' %}
+{% extends 'notifications/items/layout.html' %}
{% load i18n %}
{% load utilities %}
diff --git a/bookwyrm/templates/book/delete_readthrough_modal.html b/bookwyrm/templates/readthrough/delete_readthrough_modal.html
similarity index 100%
rename from bookwyrm/templates/book/delete_readthrough_modal.html
rename to bookwyrm/templates/readthrough/delete_readthrough_modal.html
diff --git a/bookwyrm/templates/readthrough/readthrough.html b/bookwyrm/templates/readthrough/readthrough.html
new file mode 100644
index 00000000..0b42017e
--- /dev/null
+++ b/bookwyrm/templates/readthrough/readthrough.html
@@ -0,0 +1,15 @@
+{% extends 'layout.html' %}
+{% load i18n %}
+{% load utilities %}
+
+{% block title %}
+{% blocktrans trimmed with title=book|book_title %}
+Update read dates for "
{{ title }}"
+{% endblocktrans %}
+{% endblock %}
+
+{% block content %}
+
+{% include "readthrough/readthrough_modal.html" with book=book active=True static=True %}
+
+{% endblock %}
diff --git a/bookwyrm/templates/snippets/readthrough_form.html b/bookwyrm/templates/readthrough/readthrough_form.html
similarity index 94%
rename from bookwyrm/templates/snippets/readthrough_form.html
rename to bookwyrm/templates/readthrough/readthrough_form.html
index 295ad7c6..1558dada 100644
--- a/bookwyrm/templates/snippets/readthrough_form.html
+++ b/bookwyrm/templates/readthrough/readthrough_form.html
@@ -4,6 +4,7 @@
{% csrf_token %}
+