gitlab-org--gitlab-foss/app/views/projects/pipelines/index.html.haml

25 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-06-03 18:09:45 +00:00
- @no_container = true
2016-04-12 14:16:39 +00:00
- page_title "Pipelines"
= render "projects/pipelines/head"
2016-04-12 14:16:39 +00:00
2017-09-01 11:18:00 +00:00
%div{ 'class' => container_class }
- if show_auto_devops_callout?(@project)
2017-09-01 12:32:05 +00:00
= render 'shared/auto_devops_callout'
2017-09-01 11:18:00 +00:00
#pipelines-list-vue{ data: { endpoint: project_pipelines_path(@project, format: :json),
"help-page-path" => help_page_path('ci/quick_start/README'),
"help-auto-devops-path" => help_page_path('topics/autodevops/index.md'),
"new-pipeline-path" => new_project_pipeline_path(@project),
"can-create-pipeline" => can?(current_user, :create_pipeline, @project).to_s,
"all-path" => project_pipelines_path(@project),
"pending-path" => project_pipelines_path(@project, scope: :pending),
"running-path" => project_pipelines_path(@project, scope: :running),
"finished-path" => project_pipelines_path(@project, scope: :finished),
"branches-path" => project_pipelines_path(@project, scope: :branches),
"tags-path" => project_pipelines_path(@project, scope: :tags),
"has-ci" => @project.has_ci?,
2017-09-01 11:18:00 +00:00
"ci-lint-path" => ci_lint_path } }
= page_specific_javascript_bundle_tag('common_vue')
= page_specific_javascript_bundle_tag('pipelines')