diff --git a/bookwyrm/templates/import/import_status.html b/bookwyrm/templates/import/import_status.html
index d0ad7b7e7..03d7601c4 100644
--- a/bookwyrm/templates/import/import_status.html
+++ b/bookwyrm/templates/import/import_status.html
@@ -41,7 +41,7 @@
- {% if not job.complete %}
+ {% if not job.complete and show_progress %}
@@ -94,7 +94,7 @@
{% block actions %}{% endblock %}
-
+
{% trans "Row" %}
@@ -137,6 +137,13 @@
|
{% else %}
+ {% if not items %}
+
+
+ {% trans "No items currently need review" %}
+ |
+
+ {% endif %}
{% for item in items %}
{% block index_col %}
diff --git a/bookwyrm/views/imports/import_status.py b/bookwyrm/views/imports/import_status.py
index 26ff8cdec..ffad36774 100644
--- a/bookwyrm/views/imports/import_status.py
+++ b/bookwyrm/views/imports/import_status.py
@@ -47,6 +47,7 @@ class ImportStatus(View):
"page_range": paginated.get_elided_page_range(
page.number, on_each_side=2, on_ends=1
),
+ "show_progress": True,
"item_count": item_count,
"complete_count": item_count - pending_item_count,
"percent": math.floor( # pylint: disable=c-extension-no-member