diff --git a/bookwyrm/templates/import.html b/bookwyrm/templates/import.html
index c36448127..8e3f5eb49 100644
--- a/bookwyrm/templates/import.html
+++ b/bookwyrm/templates/import.html
@@ -14,7 +14,8 @@
-
Privacy setting for imported reviews
+
+ Privacy setting for imported reviews:
{% include 'snippets/privacy_select.html' with no_label=True %}
diff --git a/bookwyrm/templates/import_status.html b/bookwyrm/templates/import_status.html
index 7db2ba3d5..ffd1fa501 100644
--- a/bookwyrm/templates/import_status.html
+++ b/bookwyrm/templates/import_status.html
@@ -6,25 +6,24 @@
Import Status
- Import started: {{ job.created_date | naturaltime }}
-
+ Import started: {{ job.created_date | naturaltime }}
+
{% if task.ready %}
- Import completed: {{ task.date_done | naturaltime }}
- {% if task.failed %}
- TASK FAILED
+ Import completed: {{ task.date_done | naturaltime }}
+
+ {% elif task.failed %}
+ TASK FAILED
{{ task.info }}
{% endif %}
- {% if job.import_status %}
- {% include 'snippets/status.html' with status=job.import_status %}
- {% endif %}
- {% else %}
+ {% if not task.ready and not task.failed %}
Import still in progress.
- (Hit reload to update!)
+ (Hit reload to update!)
+
{% endif %}