mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-12 06:06:05 +10:00
24 lines
721 B
Plaintext
24 lines
721 B
Plaintext
- if diff_view == 'parallel'
|
|
- fluid_layout true
|
|
|
|
- diff_files = safe_diff_files(diffs, diff_refs)
|
|
|
|
.content-block.oneline-block
|
|
.inline-parallel-buttons
|
|
.btn-group
|
|
= inline_diff_btn
|
|
= parallel_diff_btn
|
|
= render 'projects/diffs/stats', diff_files: diff_files
|
|
|
|
- if diff_files.overflow?
|
|
= render 'projects/diffs/warning', diff_files: diff_files
|
|
|
|
.files
|
|
- diff_files.each_with_index do |diff_file, index|
|
|
- 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, diff_refs: diff_refs
|