gitlab-org--gitlab-foss/app/views/commits/_commits.html.haml

10 lines
283 B
Text
Raw Normal View History

- @commits.group_by { |c| c.committed_date.to_date }.sort.reverse.each do |day, commits|
2012-02-12 17:12:18 -05:00
%div.ui-box
2013-01-04 17:35:38 -05:00
%h5.title
%i.icon-calendar
2013-01-25 07:18:23 -05:00
%span= day.stamp("28 Aug, 2010")
.pull-right
%small= pluralize(commits.count, 'commit')
%ul.well-list= render commits