summaryrefslogtreecommitdiff
path: root/app/views/import/_project_status.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/import/_project_status.html.haml')
-rw-r--r--app/views/import/_project_status.html.haml11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/views/import/_project_status.html.haml b/app/views/import/_project_status.html.haml
new file mode 100644
index 00000000000..280bcbc1e63
--- /dev/null
+++ b/app/views/import/_project_status.html.haml
@@ -0,0 +1,11 @@
+- case project.import_status
+- when 'finished'
+ = icon('check')
+ = _('Done')
+- when 'started'
+ = icon("spinner spin")
+ = _('Started')
+- when 'failed'
+ = _('Failed')
+- else
+ = project.human_import_status_name