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

31 lines
911 B
Text
Raw Normal View History

2015-09-25 12:07:36 +05:30
- if params[:view] == 'parallel'
- fluid_layout true
2015-10-24 18:46:33 +05:30
- diff_files = safe_diff_files(diffs)
2015-09-25 12:07:36 +05:30
.gray-content-block.second-block
.inline-parallel-buttons
2015-04-26 12:48:37 +05:30
.btn-group
= inline_diff_btn
= parallel_diff_btn
2015-10-24 18:46:33 +05:30
= render 'projects/diffs/stats', diff_files: diff_files
2015-09-11 14:41:01 +05:30
- if diff_files.count < diffs.size
= render 'projects/diffs/warning', diffs: diffs, shown_files_count: diff_files.count
2015-04-26 12:48:37 +05:30
.files
2015-09-11 14:41:01 +05:30
- diff_files.each_with_index do |diff_file, index|
2015-10-24 18:46:33 +05:30
- diff_commit = commit_for_diff(diff_file)
- blob = project.repository.blob_for_diff(diff_commit, diff_file)
- next unless blob
= render 'projects/diffs/file', i: index, project: project,
diff_file: diff_file, diff_commit: diff_commit, blob: blob
2015-04-26 12:48:37 +05:30
- if @diff_timeout
.alert.alert-danger
%h4
Failed to collect changes
%p
Maybe diff is really big and operation failed with timeout. Try to get diff locally