gitlabhq/app/views/commits/_diff_head.html.haml

27 lines
755 B
Plaintext
Raw Normal View History

%ul.bordered-list
- diffs.each do |diff|
%li
- if diff.deleted_file
%span.removed_file
%a{href: "##{diff.old_path}"}
2012-04-11 22:03:56 +02:00
= diff.old_path
= image_tag "diff_file_delete.png"
- elsif diff.renamed_file
%span.moved_file
%a{href: "##{diff.new_path}"}
2012-04-11 22:03:56 +02:00
= diff.old_path
= "->"
2012-04-11 22:03:56 +02:00
= diff.new_path
= image_tag "diff_file_notice.png"
- elsif diff.new_file
%span.new_file
%a{href: "##{diff.new_path}"}
2012-04-11 22:03:56 +02:00
= diff.new_path
= image_tag "diff_file_add.png"
- else
%span.edit_file
%a{href: "##{diff.new_path}"}
2012-04-11 22:03:56 +02:00
= diff.new_path
= image_tag "diff_file_info.png"
2011-10-21 20:40:36 +02:00