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

20 lines
555 B
Plaintext
Raw Normal View History

2012-01-28 15:47:55 +01:00
- commit = update
2012-02-18 14:59:01 +01:00
%tr
%td
= link_to project_commits_path(@project, :ref => commit.head.name) do
2012-02-18 14:59:01 +01:00
%strong
2012-01-28 15:47:55 +01:00
= commit.head.name
- if commit.head.name == @project.root_ref
%span.label default
2012-02-18 14:59:01 +01:00
%td
%div
= link_to project_commits_path(@project, commit.id) do
%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)
2012-02-18 14:59:01 +01:00
%td
%span.right.cgray
= time_ago_in_words(commit.committed_date)
ago