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}} -
- {{#if job.repo.slug}} - - {{#link-to "job" job.repo job}}{{job.repo.slug}}{{/link-to}} - {{/if}} - + {{#if length}} + {{#each job in controller}} +
+ {{#if job.repo.slug}} + + {{#link-to "job" job.repo job}}{{job.repo.slug}}{{/link-to}} + {{/if}} + -

- - {{#link-to "job" job.repo job}}{{job.number}}{{/link-to}} -

+

+ + {{#link-to "job" job.repo job}}{{job.number}}{{/link-to}} +

-

- Queued -

+

+ Queued +

-
+
- {{/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}} -
- {{#if job.repo.slug}} - - {{#link-to "job" job.repo job}}{{job.repo.slug}}{{/link-to}} - {{/if}} - + {{#if controller.length}} + {{#each job in controller}} +
+ {{#if job.repo.slug}} + + {{#link-to "job" job.repo job}}{{job.repo.slug}}{{/link-to}} + {{/if}} + -

- - {{#link-to "job" job.repo job}}{{job.number}}{{/link-to}} -

+

+ + {{#link-to "job" job.repo job}}{{job.number}}{{/link-to}} +

-

- - Duration: - - {{format-duration job.startedAt}} - -

+

+ + Duration: + + {{format-duration job.startedAt}} + +

-
+
- {{/each}} + {{/each}} + {{else}} +
There are no jobs running
+ {{/if}} {{else}} -
There are no jobs running
-{{/if}} -{{else}} - +
+ +
{{/if}}