Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_commits.html.haml « commits « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23e94177ccd6809cdc168aadbde1bbeec5924eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
- @commits.group_by { |c| c.committed_date.to_date }.sort.reverse.each do |day, commits|
  .row.commits-row
    .col-md-2
      %h4
        %i.fa.fa-calendar
        %span= JalaliDate.new(day).strftime("%A %d %b %Y")
      %p= pluralize(commits.count, 'commit')
    .col-md-10
      %ul.bordered-list
        = render commits, project: @project
  %hr.lists-separator