2012-04-01 23:24:45 +02:00
|
|
|
%div
|
2012-05-19 11:25:16 +02:00
|
|
|
.event_icon= image_tag "event_push.png"
|
2012-08-11 00:07:50 +02:00
|
|
|
= image_tag gravatar_icon(event.author_email), class: "avatar"
|
2012-09-24 11:32:51 +02:00
|
|
|
|
|
|
|
.event-title
|
|
|
|
%strong.author_name #{event.author_name}
|
2012-09-24 12:33:51 +02:00
|
|
|
%span.event_label.pushed #{event.push_action_name} #{event.ref_type}
|
2012-09-24 11:32:51 +02:00
|
|
|
= link_to project_commits_path(event.project, ref: event.ref_name) do
|
|
|
|
%strong= event.ref_name
|
|
|
|
at
|
|
|
|
%strong= link_to event.project.name, event.project
|
2012-04-01 23:24:45 +02:00
|
|
|
|
2012-04-02 18:51:20 +02:00
|
|
|
- if event.push_with_commits?
|
2012-06-04 00:37:27 +02:00
|
|
|
- project = event.project
|
2012-09-24 11:32:51 +02:00
|
|
|
.event-body
|
|
|
|
%ul.unstyled.event_commits
|
2012-09-25 12:14:20 +02:00
|
|
|
- few_commits = event.commits[0...2]
|
|
|
|
- few_commits.each do |commit|
|
|
|
|
= render "events/commit", commit: commit, project: project
|
|
|
|
|
|
|
|
%li.commits-stat
|
|
|
|
- if event.commits_count > 2
|
|
|
|
%span ... and #{event.commits_count - 2} more commits.
|
2012-09-26 05:13:19 +02:00
|
|
|
= link_to project_compare_path(event.project, from: event.parent_commit.id, to: event.last_commit.id) do
|
2012-09-25 12:14:20 +02:00
|
|
|
%strong Compare → #{event.parent_commit.id[0..7]}...#{event.last_commit.id[0..7]}
|
2012-09-24 11:32:51 +02:00
|
|
|
.clearfix
|