2012-10-01 15:58:13 +02:00
|
|
|
.event-title
|
|
|
|
%span.author_name= link_to_author event
|
|
|
|
%span.event_label.pushed #{event.push_action_name} #{event.ref_type}
|
2012-10-02 14:04:34 +02:00
|
|
|
- if event.rm_ref?
|
2012-10-01 15:58:13 +02:00
|
|
|
%strong= event.ref_name
|
2012-10-02 14:04:34 +02:00
|
|
|
- else
|
|
|
|
= link_to project_commits_path(event.project, event.ref_name) do
|
|
|
|
%strong= event.ref_name
|
2012-10-01 15:58:13 +02:00
|
|
|
at
|
2012-12-09 15:03:24 +01:00
|
|
|
%strong= link_to_project event.project
|
2012-10-01 15:58:13 +02:00
|
|
|
|
|
|
|
- if event.push_with_commits?
|
|
|
|
- project = event.project
|
|
|
|
.event-body
|
2012-12-18 04:14:05 +01:00
|
|
|
%ul.well-list.event_commits
|
2012-10-01 15:58:13 +02:00
|
|
|
- few_commits = event.commits[0...2]
|
|
|
|
- few_commits.each do |commit|
|
|
|
|
= render "events/commit", commit: commit, project: project
|
|
|
|
|
|
|
|
- if event.commits_count > 1
|
|
|
|
%li.commits-stat
|
|
|
|
- if event.commits_count > 2
|
|
|
|
%span ... and #{event.commits_count - 2} more commits.
|
|
|
|
= link_to project_compare_path(event.project, from: event.parent_commit.id, to: event.last_commit.id) do
|
|
|
|
%strong Compare → #{event.parent_commit.id[0..7]}...#{event.last_commit.id[0..7]}
|