diff --git a/app/templates/queue.hbs b/app/templates/queue.hbs
index 5a7d24d6..2dee38d5 100644
--- a/app/templates/queue.hbs
+++ b/app/templates/queue.hbs
@@ -1,28 +1,30 @@
{{#if isLoaded}}
-{{#if length}}
- {{#each job in controller}}
-
- {{/each}}
+ {{/each}}
+ {{else}}
+ There are no jobs queued
+ {{/if}}
{{else}}
- There are no jobs queued
-{{/if}}
-{{else}}
-
+
+
+
{{/if}}
diff --git a/app/templates/running-jobs.hbs b/app/templates/running-jobs.hbs
index 7a91eaef..f59228d6 100644
--- a/app/templates/running-jobs.hbs
+++ b/app/templates/running-jobs.hbs
@@ -1,34 +1,36 @@
{{!-- Running Jobs ({{controller.length}})
--}}
{{#if isLoaded}}
-{{#if controller.length}}
- {{#each job in controller}}
-
- {{/each}}
+ {{/each}}
+ {{else}}
+ There are no jobs running
+ {{/if}}
{{else}}
- There are no jobs running
-{{/if}}
-{{else}}
-
+
+
+
{{/if}}