gitlabhq/app/views/merge_requests/_commits.html.haml
2012-03-15 00:57:43 +02:00

16 lines
343 B
Plaintext

- unless @commits.empty?
.ui-box
%h5 Commits
.merge-request-commits
%ul.unstyled
- @commits.each do |commit|
= render "commits/commit", :commit => commit
- else
%h5
Nothing to merge from
%span.label #{@merge_request.source_branch}
to
%span.label #{@merge_request.target_branch}
%br