gitlabhq/app/views/commits/_commit.html.haml

17 lines
568 B
Plaintext
Raw Normal View History

2012-02-14 23:10:01 +01:00
%li.wll.commit
2012-02-11 22:22:33 +01:00
.right.span2
2012-02-19 20:30:31 +01:00
= link_to "Browse Code »", tree_project_ref_path(@project, commit.id), :class => "btn small right"
2012-02-11 22:22:33 +01:00
= link_to project_commit_path(@project, :id => commit.id) do
%p
2012-02-14 23:10:01 +01:00
%code.left= commit.id.to_s[0..10]
%strong= commit.author_name
2012-02-11 22:22:33 +01:00
–
2012-02-14 23:10:01 +01:00
= image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16
%span= truncate(commit.safe_message, :length => 50) rescue "--broken encoding"
2012-02-06 21:32:04 +01:00
2012-02-11 22:22:33 +01:00
%span.right.cgray
= time_ago_in_words(commit.committed_date)
ago
2012-02-19 20:30:31 +01:00
 
2012-02-06 21:32:04 +01:00