2015-04-26 12:48:37 +05:30
|
|
|
.prepend-top-20.append-bottom-20
|
|
|
|
.pull-right
|
|
|
|
.btn-group
|
|
|
|
= inline_diff_btn
|
|
|
|
= parallel_diff_btn
|
|
|
|
= render 'projects/diffs/stats', diffs: diffs
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
- diff_files = safe_diff_files(diffs)
|
|
|
|
|
|
|
|
- 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-04-26 12:48:37 +05:30
|
|
|
= render 'projects/diffs/file', diff_file: diff_file, i: index, project: project
|
|
|
|
|
|
|
|
- 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
|