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

15 lines
582 B
Plaintext
Raw Normal View History

- @no_container = true
- add_to_breadcrumbs "Pipelines", project_pipelines_path(@project)
- breadcrumb_title "##{@pipeline.id}"
2016-04-13 11:01:08 +00:00
- page_title "Pipeline"
2016-04-13 15:05:17 +00:00
2016-12-23 09:37:12 +00:00
.js-pipeline-container{ class: container_class, data: { controller_action: "#{controller.action_name}" } }
#js-pipeline-header-vue.pipeline-header-container
- if @pipeline.commit.present?
= render "projects/pipelines/info", commit: @pipeline.commit
2016-04-13 15:05:17 +00:00
= render "projects/pipelines/with_tabs", pipeline: @pipeline
.js-pipeline-details-vue{ data: { endpoint: project_pipeline_path(@project, @pipeline, format: :json) } }