19922c705e
Closes #34711
15 lines
777 B
Text
15 lines
777 B
Text
- 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= l(day, format: '%d %b, %Y')
|
|
%span.commits-count= n_("%d commit", "%d commits", commits.count) % commits.count
|
|
|
|
%li.commits-row{ data: { day: day } }
|
|
%ul.content-list.commit-list
|
|
= render partial: 'projects/commits/commit', collection: commits, locals: { project: project, ref: ref }
|
|
|
|
- if hidden > 0
|
|
%li.alert.alert-warning
|
|
= n_('%s additional commit has been omitted to prevent performance issues.', '%s additional commits have been omitted to prevent performance issues.', hidden) % number_with_delimiter(hidden)
|