gitlabhq/app/views/commits/_commits.html.haml
Dmitriy Zaporozhets d5d9f1c515 Merge pull request #2015 from elvanja/commits-group-and-sort-by-date-desc
fix: grouping commits by date desc doesn't sort the groups too
2013-03-05 06:40:13 -08:00

7 lines
213 B
Plaintext

- @commits.group_by { |c| c.committed_date.to_date }.sort.reverse.each do |day, commits|
%div.ui-box
%h5.title
%i.icon-calendar
%span= day.stamp("28 Aug, 2010")
%ul.well-list= render commits