summaryrefslogtreecommitdiff
path: root/app/views/projects/commits/_commit_list.html.haml
blob: c0988eca6de217f9160ca7527567b0e793ba64e2 (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.well-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.
  - else
    %ul.well-list= render commits, project: @project