summaryrefslogtreecommitdiff
path: root/app/views/projects/commits/_commit_list.html.haml
blob: 46e4de40042ff411bb3051ddd692f5b06d6509a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- commits, hidden = limited_commits(@commits)
- commits = Commit.decorate(commits, @project)

%div.panel.panel-default
  .panel-heading
    Commits (#{@commits.count})
  - if hidden > 0
    %ul.content-list
      - commits.each do |commit|
        = render "projects/commits/inline_commit", commit: commit, project: @project
      %li.warning-row.unstyled
        #{number_with_delimiter(hidden)} additional commits have been omitted to prevent performance issues.
  - else
    %ul.content-list= render commits, project: @project