summaryrefslogtreecommitdiff
path: root/app/views/projects/commits/_commits.html.haml
blob: d3380c917e46e24caf11165e2df898ce517e8666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- ref = local_assigns.fetch(:ref)
- commits, hidden = limited_commits(@commits)

- commits.chunk { |c| c.committed_date.in_time_zone.to_date }.each do |day, commits|
  %li.commit-header.js-commit-header{ data: { day: day } }
    %span.day= day.strftime('%d %b, %Y')
    %span.commits-count= pluralize(commits.count, 'commit')

  %li.commits-row{ data: { day: day } }
    %ul.content-list.commit-list
      = render commits, project: project, ref: ref

- if hidden > 0
  %li.alert.alert-warning
    #{number_with_delimiter(hidden)} additional commits have been omitted to prevent performance issues.