2020-07-28 23:09:34 +05:30
|
|
|
- page_title _("Jobs")
|
2021-01-29 00:20:46 +05:30
|
|
|
- add_page_specific_style 'page_bundles/ci_status'
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
.top-area
|
|
|
|
- build_path_proc = ->(scope) { project_jobs_path(@project, scope: scope) }
|
|
|
|
= render "shared/builds/tabs", build_path_proc: build_path_proc, all_builds: @all_builds, scope: @scope
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
.nav-controls
|
|
|
|
- if can?(current_user, :update_build, @project)
|
|
|
|
- unless @repository.gitlab_ci_yml
|
2020-11-24 15:15:51 +05:30
|
|
|
= link_to 'Get started with Pipelines', help_page_path('ci/quick_start/README'), class: 'btn gl-button btn-info'
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
= link_to project_ci_lint_path(@project), class: 'btn gl-button btn-default' do
|
2019-12-04 20:38:33 +05:30
|
|
|
%span CI lint
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
.content-list.builds-content-list
|
|
|
|
= render "table", builds: @builds, project: @project
|