2012-06-20 23:21:13 +02:00
|
|
|
- if @commits.present?
|
2012-02-15 00:15:02 +01:00
|
|
|
.ui-box
|
2012-04-17 21:08:07 +02:00
|
|
|
%h5 Commits (#{@commits.count})
|
2012-02-15 00:15:02 +01:00
|
|
|
.merge-request-commits
|
2012-04-17 21:08:07 +02:00
|
|
|
- if @commits.count > 8
|
|
|
|
%ul.first_mr_commits.unstyled
|
2012-06-04 00:37:27 +02:00
|
|
|
- @commits.first(8).each do |commit|
|
2012-04-17 21:08:07 +02:00
|
|
|
= render "commits/commit", :commit => commit
|
2012-06-04 00:37:27 +02:00
|
|
|
%li.bottom
|
2012-04-17 21:08:07 +02:00
|
|
|
8 of #{@commits.count} commits displayed.
|
2012-06-04 00:37:27 +02:00
|
|
|
%strong
|
2012-06-20 20:29:55 +02:00
|
|
|
%a.mr_show_all_commits Click here to show all
|
2012-04-17 21:08:07 +02:00
|
|
|
%ul.all_mr_commits.hide.unstyled
|
2012-06-04 00:37:27 +02:00
|
|
|
- @commits.each do |commit|
|
2012-04-17 21:08:07 +02:00
|
|
|
= render "commits/commit", :commit => commit
|
|
|
|
|
2012-06-04 00:37:27 +02:00
|
|
|
- else
|
2012-04-17 21:08:07 +02:00
|
|
|
%ul.unstyled
|
2012-06-04 00:37:27 +02:00
|
|
|
- @commits.each do |commit|
|
2012-04-17 21:08:07 +02:00
|
|
|
= render "commits/commit", :commit => commit
|
2011-11-28 21:16:57 +01:00
|
|
|
|
2012-06-04 00:37:27 +02:00
|
|
|
- else
|
2012-02-15 00:15:02 +01:00
|
|
|
%h5
|
2012-06-04 00:37:27 +02:00
|
|
|
Nothing to merge from
|
|
|
|
%span.label #{@merge_request.source_branch}
|
|
|
|
to
|
2012-02-15 00:15:02 +01:00
|
|
|
%span.label #{@merge_request.target_branch}
|
|
|
|
%br
|