gitlab-org--gitlab-foss/app/views/notify/repository_push_email.html.haml
Dmitriy Zaporozhets f844556531
Fix email on push
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-29 15:18:11 +03:00

28 lines
639 B
Text

%h3 #{@author.name} pushed to #{@branch} at #{@project.name_with_namespace}
%h4 Commits:
%ul
- @commits.each do |commit|
%li
%strong #{commit.short_id}
%span by #{commit.author_name}
%pre #{commit.safe_message}
%h4 Changes:
- @diffs.each do |diff|
%li
%strong
- if diff.old_path == diff.new_path
= diff.new_path
- elsif diff.new_path && diff.old_path
#{diff.old_path} &rarr; #{diff.new_path}
- else
= diff.new_path || diff.old_path
%hr
%pre
= diff.diff
%br
- if @compare.timeout
%h5 Huge diff. To prevent performance issues changes are hidden