2012-11-19 05:44:28 -05:00
|
|
|
- @commits.group_by { |c| c.committed_date.to_date }.sort.reverse.each do |day, commits|
|
2013-09-09 09:20:43 -04:00
|
|
|
.row.commits-row
|
2013-12-30 16:55:15 -05:00
|
|
|
.col-md-2
|
2013-09-09 09:20:43 -04:00
|
|
|
%h4
|
|
|
|
%i.icon-calendar
|
|
|
|
%span= day.stamp("28 Aug, 2010")
|
|
|
|
%p= pluralize(commits.count, 'commit')
|
2013-12-30 16:55:15 -05:00
|
|
|
.col-md-10
|
2014-06-10 15:01:56 -04:00
|
|
|
%ul.bordered-list
|
2013-09-09 09:20:43 -04:00
|
|
|
= render commits, project: @project
|
2013-09-10 03:17:15 -04:00
|
|
|
%hr.lists-separator
|