diff --git a/bookwyrm/templates/import_status.html b/bookwyrm/templates/import_status.html index ffd1fa501..e4eb681e1 100644 --- a/bookwyrm/templates/import_status.html +++ b/bookwyrm/templates/import_status.html @@ -8,18 +8,17 @@

Import started: {{ job.created_date | naturaltime }}

- {% if task.ready %} + {% if task.successful %}

Import completed: {{ task.date_done | naturaltime }}

{% elif task.failed %}
TASK FAILED
- {{ task.info }} {% endif %}
- {% if not task.ready and not task.failed %} + {% if task.status == 'PENDING' %} Import still in progress.

(Hit reload to update!)