debian-mirror-gitlab/app/views/projects/blob/_header.html.haml

27 lines
1.4 KiB
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
- blame = local_assigns.fetch(:blame, false)
.js-file-title.file-title-flex-parent
= render 'projects/blob/header_content', blob: blob
2021-03-11 19:13:27 +05:30
.file-actions.gl-display-flex.gl-align-items-center.gl-flex-wrap.gl-md-justify-content-end<
2017-08-17 22:00:37 +05:30
= render 'projects/blob/viewer_switcher', blob: blob unless blame
2021-01-29 00:20:46 +05:30
- if Feature.enabled?(:consolidated_edit_button, @project)
2021-01-03 14:25:43 +05:30
= render 'shared/web_ide_button', blob: blob
- else
= edit_blob_button(@project, @ref, @path, blob: blob)
= ide_edit_button(@project, @ref, @path, blob: blob)
2021-04-29 21:17:54 +05:30
- if can_view_pipeline_editor?(@project) && @path == @project.ci_config_path_or_default
2021-12-11 22:18:48 +05:30
= link_to "Pipeline Editor", project_ci_pipeline_editor_path(@project, branch_name: @ref), class: "btn gl-button btn-confirm-secondary gl-ml-3"
2021-03-11 19:13:27 +05:30
.btn-group{ role: "group", class: ("gl-ml-3" if current_user) }>
2019-12-26 22:10:19 +05:30
= render_if_exists 'projects/blob/header_file_locks_link'
2017-08-17 22:00:37 +05:30
- if current_user
2020-05-24 23:13:21 +05:30
= replace_blob_link(@project, @ref, @path, blob: blob)
= delete_blob_link(@project, @ref, @path, blob: blob)
2021-03-11 19:13:27 +05:30
.btn-group.gl-ml-3{ role: "group" }
2019-12-26 22:10:19 +05:30
= copy_blob_source_button(blob) unless blame
= open_raw_blob_button(blob)
= download_blob_button(blob)
= view_on_environment_button(@commit.sha, @path, @environment) if @environment
2017-08-17 22:00:37 +05:30
2021-03-11 19:13:27 +05:30
= render_fork_suggestion
2018-11-08 19:23:39 +05:30
= render_if_exists 'projects/blob/header_file_locks', project: @project, path: @path