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

10 lines
434 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
2012-07-24 01:22:01 +02:00
%p
= link_to commit.short_id(8), project_commit_path(project, :id => commit.id), :class => "commit_short_id"
%strong.cdark= commit.author_name
2012-07-24 01:22:01 +02:00
–
= image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16
2012-08-02 02:31:45 +02:00
= gfm truncate(commit.title, :length => 50), project_commit_path(project, :id => commit.id) rescue "--broken encoding"
2012-03-20 22:59:35 +01:00