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

23 lines
1.1 KiB
Plaintext
Raw Normal View History

2011-10-08 23:36:38 +02:00
- @commits.group_by { |c| c.committed_date.to_date }.each do |day, commits|
.day-commits-table
.day-header
%h3= day.stamp("28 Aug, 2010")
%ul
- commits.each do |commit|
%li{ :class => "commit", :url => project_commit_path(@project, :id => commit.id) }
- if commit.author.email
= image_tag gravatar_icon(commit.author.email), :class => "left", :width => 40, :style => "padding-right:5px;"
- else
= image_tag "no_avatar.png", :class => "left", :width => 40, :style => "padding-right:5px;"
%p
%strong
2011-10-25 06:32:02 +02:00
= truncate(commit.safe_message, :length => 60)
2011-10-08 23:36:38 +02:00
= link_to "Browse Code", tree_project_path(@project, :commit_id => commit.id), :class => "lite_button", :style => "float:right"
= link_to truncate(commit.id.to_s, :length => 16), project_commit_path(@project, :id => commit.id), :class => "lite_button", :style => "width:120px;float:right"
%span
2011-10-20 18:21:58 +02:00
%span.author
= commit.author
2011-10-08 23:36:38 +02:00
= time_ago_in_words(commit.committed_date)
ago
= more_commits_link if @commits.size > 99