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

11 lines
512 B
Plaintext
Raw Normal View History

2012-07-22 13:08:24 +02:00
- commit = CommitDecorator.decorate(commit)
2012-03-20 22:59:35 +01:00
%li.wll.commit
= link_to project_commit_path(project, :id => commit.id) do
%p
2012-07-22 14:31:42 +02:00
%code.left= link_to commit.short_id, project_commit_path(project, :id => commit.id)
2012-03-20 22:59:35 +01:00
%strong.cgray= commit.author_name
–
= image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16
2012-07-22 14:31:42 +02:00
= link_to truncate(commit.title, :length => 50), project_commit_path(project, :id => commit.id), :class => "row_title" rescue "--broken encoding"
2012-03-20 22:59:35 +01:00