summaryrefslogtreecommitdiff
path: root/app/views/projects/_recent_commits.html.haml
blob: b34470d674152fba5004ca7d72716060b5bbedd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- @commits.each do |commit|
  %div.commit
    - if commit.author.email
      = image_tag gravatar_icon(commit.author.email), :class => "left", :width => 40, :style => "padding-right:5px;"
    - else
      = image_tag "no_avatar.png", :class => "left", :width => 40, :style => "padding-right:5px;"
    %p{:style => "margin-bottom: 3px;"}
      %strong
        = link_to truncate(commit.safe_message, :length => 60), project_commit_path(@project, :id => commit.id)

    %span
      %span.author
        = commit.author.name.force_encoding("UTF-8")
      %cite
        = time_ago_in_words(commit.committed_date)
        ago
  %br