diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2018-01-22 10:10:57 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2018-01-22 10:10:57 +0000 |
commit | 63b93664c705fac234f2b6d53f0ba81f273a675d (patch) | |
tree | 5010268c095b2eb1bd89f3d2231e02a8e8d08cdc /app/views/projects | |
parent | 30cfcd5a93f705923c1715b6db95977490bdd39f (diff) | |
download | gitlab-ce-63b93664c705fac234f2b6d53f0ba81f273a675d.tar.gz |
Adds information for pending state
Diffstat (limited to 'app/views/projects')
-rw-r--r-- | app/views/projects/jobs/show.html.haml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/app/views/projects/jobs/show.html.haml b/app/views/projects/jobs/show.html.haml index 13a8e2c3ace..06b5a1e7d0c 100644 --- a/app/views/projects/jobs/show.html.haml +++ b/app/views/projects/jobs/show.html.haml @@ -100,8 +100,13 @@ illustration: 'illustrations/job_not_triggered.svg', illustration_size: 'svg-306', title: _('This job has not been triggered yet'), - content: _('This job depends on upstream jobs that need to succeed in order for this job to be triggered.') - + content: _('This job depends on upstream jobs that need to succeed in order for this job to be triggered') + - else + = render 'empty_state', + illustration: 'illustrations/job_not_triggered.svg', + illustration_size: 'svg-306', + title: _('This job has not started yet'), + content: _('This job is in pending state and is waiting to be picked by the runner') = render "sidebar" .js-build-options{ data: javascript_build_options } |