summaryrefslogtreecommitdiff
path: root/app/views/projects/_last_commit.html.haml
blob: 5d940417c3baca2a7295755be81b59aabd5bdc59 (plain)
1
2
3
4
5
6
7
8
9
10
11
.commit
  %p
    %time.committed_ago{ datetime: commit.committed_date, title: commit.committed_date.stamp("Aug 21, 2011 9:23pm") }
      = time_ago_in_words(commit.committed_date)
      ago
       
    = commit.author_link avatar: true, size: 16
  %p
    = link_to commit.short_id(8), project_commit_path(@project, commit), class: "commit_short_id"
     
    = link_to_gfm truncate(commit.title, length: 30), project_commit_path(@project, commit.id), class: "row_title"