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-06-04 00:37:27 +02:00
|
|
|
%strong #{event.author_name}
|
2012-07-17 07:21:16 +02:00
|
|
|
%span.event_label.pushed= event.push_action_name
|
2012-05-19 11:25:16 +02:00
|
|
|
= event.ref_type
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to project_commits_path(event.project, ref: event.ref_name) do
|
2012-04-01 23:24:45 +02:00
|
|
|
%strong= event.ref_name
|
2012-06-04 00:37:27 +02:00
|
|
|
at
|
2012-03-01 21:43:04 +01:00
|
|
|
%strong= link_to event.project.name, event.project
|
|
|
|
%span.cgray
|
|
|
|
= time_ago_in_words(event.created_at)
|
|
|
|
ago.
|
2012-04-01 23:24:45 +02:00
|
|
|
|
2012-04-02 18:51:20 +02:00
|
|
|
- if event.push_with_commits?
|
2012-04-04 06:39:04 +02:00
|
|
|
- if event.commits_count > 1
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to compare_project_commits_path(event.project, from: event.parent_commit.id, to: event.last_commit.id) do
|
2012-04-04 06:39:04 +02:00
|
|
|
%strong #{event.parent_commit.id[0..7]}...#{event.last_commit.id[0..7]}
|
2012-06-04 00:37:27 +02:00
|
|
|
- project = event.project
|
2012-04-01 23:24:45 +02:00
|
|
|
%ul.unstyled.event_commits
|
2012-04-04 06:39:04 +02:00
|
|
|
- if event.commits_count > 3
|
2012-04-01 23:24:45 +02:00
|
|
|
- event.commits[0...2].each do |commit|
|
2012-08-11 00:07:50 +02:00
|
|
|
= render "events/commit", commit: commit, project: project
|
2012-04-01 23:24:45 +02:00
|
|
|
%li
|
|
|
|
%br
|
2012-04-04 06:39:04 +02:00
|
|
|
\... and #{event.commits_count - 2} more commits
|
2012-06-04 00:37:27 +02:00
|
|
|
- else
|
2012-04-01 23:24:45 +02:00
|
|
|
- event.commits.each do |commit|
|
2012-08-11 00:07:50 +02:00
|
|
|
= render "events/commit", commit: commit, project: project
|
2012-06-12 16:43:16 +02:00
|
|
|
|