debian-mirror-gitlab/app/views/projects/diffs/_file.html.haml

24 lines
1.3 KiB
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
- environment = local_assigns.fetch(:environment, nil)
.diff-file.file-holder{ id: file_hash, data: diff_file_html_data(project, diff_file.file_path, diff_commit.id) }
.js-file-title.file-title-flex-parent
.file-header-content
= render "projects/diffs/file_header", diff_file: diff_file, blob: blob, diff_commit: diff_commit, project: project, url: "##{file_hash}"
2015-04-26 12:48:37 +05:30
2016-08-24 12:49:21 +05:30
- unless diff_file.submodule?
2016-01-29 22:53:50 +05:30
.file-actions.hidden-xs
2017-08-17 22:00:37 +05:30
- if blob.readable_text?
= link_to '#', class: 'js-toggle-diff-comments btn active has-tooltip', title: "Toggle comments for this file", disabled: @diff_notes_disabled do
2016-06-02 11:05:42 +05:30
= icon('comment')
2016-01-29 22:53:50 +05:30
\
2016-09-13 17:45:13 +05:30
- if editable_diff?(diff_file)
2017-01-15 13:20:01 +05:30
- link_opts = @merge_request.persisted? ? { from_merge_request_iid: @merge_request.iid } : {}
2016-09-13 17:45:13 +05:30
= edit_blob_link(@merge_request.source_project, @merge_request.source_branch, diff_file.new_path,
blob: blob, link_opts: link_opts)
2015-04-26 12:48:37 +05:30
2017-08-17 22:00:37 +05:30
= view_file_button(diff_commit.id, diff_file.new_path, project)
= view_on_environment_button(diff_commit.id, diff_file.new_path, environment) if environment
= render 'projects/fork_suggestion'
2015-04-26 12:48:37 +05:30
2016-09-13 17:45:13 +05:30
= render 'projects/diffs/content', diff_file: diff_file, diff_commit: diff_commit, blob: blob, project: project