gitlabhq/app/views/repositories/_feed.html.haml

14 lines
416 B
Plaintext
Raw Normal View History

2012-01-28 15:47:55 +01:00
- commit = update
2012-02-11 22:22:33 +01:00
.wll
2012-01-28 15:47:55 +01:00
= link_to project_commits_path(@project, :ref => commit.head.name) do
%p
2012-02-11 22:22:33 +01:00
%strong.label
2012-01-28 15:47:55 +01:00
= commit.head.name
%br
%code= commit.id.to_s[0..10]
2012-01-28 15:47:55 +01:00
= image_tag gravatar_icon(commit.author_email), :class => "", :width => 16
= truncate(commit.safe_message, :length => 40)
%span.right.cgray
2012-01-28 15:47:55 +01:00
= time_ago_in_words(commit.committed_date)
ago