summaryrefslogtreecommitdiff
path: root/app/views/projects/merge_requests/show/_commits.html.haml
blob: 7b0e67053a534cc10bf2232f537a02f9e51fd707 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
- if @commits.present?
  .ui-box
    .title
      %i.icon-list
      Commits (#{@commits.count})
    .commits
      - if @commits.count > 8
        %ul.first-commits.well-list
          - @commits.first(8).each do |commit|
            = render "projects/commits/commit", commit: commit, project: @merge_request.source_project
          %li.bottom
            8 of #{@commits.count} commits displayed.
            %strong
              %a.show-all-commits Click here to show all
        %ul.all-commits.hide.well-list
          - @commits.each do |commit|
            = render "projects/commits/commit", commit: commit, project: @merge_request.source_project

      - else
        %ul.well-list
          - @commits.each do |commit|
            = render "projects/commits/commit", commit: commit, project: @merge_request.source_project

- else
  %h4.nothing_here_message
    Nothing to merge from
    %span.label-branch #{@merge_request.source_branch}
    to
    %span.label-branch #{@merge_request.target_branch}
  %br