diff --git a/app/templates/jobs.hbs b/app/templates/jobs.hbs deleted file mode 100644 index e7aef432..00000000 --- a/app/templates/jobs.hbs +++ /dev/null @@ -1,85 +0,0 @@ -{{#if view.jobs.length}} -
- - {{#if view.required}} -

Build Jobs

- {{else}} -

Allowed Failures -
- -

These are jobs are allowed to fail, without failing your entire build.

-
-

- {{/if}} - - {{#each view.jobs as |job|}} - {{#view 'jobs-item' context=job}} -
- {{#if job.config}} - {{#link-to "job" job.repo job}} - -
- -
- -

- - {{#if job.id}} - {{#if job.repo.slug}} - {{number}} - {{/if}} - {{/if}} -

- -

- - {{!-- {{config.os}} --}} -

- - {{#if view.languages}} -

- - {{view.languages}} -

- {{else}} -

- - no language set -

- {{/if}} - -
- {{#if config.env}} -

- - {{config.env}} -

- {{else}} -

- - no environment variables set -

- {{/if}} - -

- - {{format-duration duration}} -

- -
- - {{!--

- - {{format-time finishedAt}} -

--}} - - {{/link-to}} - {{else}} - {{loading-indicator}} - {{/if}} -
- {{/view}} - {{!-- {{job.configKeys}} --}} - {{/each}} -
-{{/if}}