diff --git a/html/template/sync/pool-by-id.html b/html/template/sync/pool-by-id.html
index 2a8c3502..b0953568 100644
--- a/html/template/sync/pool-by-id.html
+++ b/html/template/sync/pool-by-id.html
@@ -75,58 +75,66 @@
Error:{{ .Message }}
{{ end }}
- {{ if eq (len .Upload.Pools) 0 }}
-
+ {{ if eq .Upload.Status "uploaded" }}
+
- Warning: No pools could be understood from your
- file.
+ Working: File is still processing... refresh this
+ page in a bit to see updates.
{{ else }}
-
-
-
-
- | Street |
- City |
- Post |
- Status |
- Condition |
-
-
-
- {{ range .Upload.Pools }}
+ {{ if eq (len .Upload.Pools) 0 }}
+
+
+ Warning: No pools could be understood from your
+ file.
+
+ {{ else }}
+
+
+
- | {{ .Street }} |
- {{ .City }} |
- {{ .PostalCode }} |
- {{ if eq .Status "new" }}
-
- New
- |
- {{ else if eq .Status "existing" }}
-
- Existing
- |
- {{ else if eq .Status "outside" }}
-
- Outside
- |
- {{ else }}
-
- {{ .Status }}
- |
- {{ end }}
+ Street |
+ City |
+ Post |
+ Status |
+ Condition |
- {{ end }}
-
-
-
+
+
+ {{ range .Upload.Pools }}
+
+ | {{ .Street }} |
+ {{ .City }} |
+ {{ .PostalCode }} |
+ {{ if eq .Status "new" }}
+
+ New
+ |
+ {{ else if eq .Status "existing" }}
+
+ Existing
+ |
+ {{ else if eq .Status "outside" }}
+
+ Outside
+ |
+ {{ else }}
+
+ {{ .Status }}
+ |
+ {{ end }}
+
+ {{ end }}
+
+
+
+ {{ end }}
{{ end }}