gitlab-org--gitlab-foss/app/views/events/event/_push.html.haml

26 lines
935 B
Plaintext
Raw Normal View History

2012-10-01 13:58:13 +00:00
.event-title
%span.author_name= link_to_author event
%span.event_label.pushed #{event.push_action_name} #{event.ref_type}
- if event.rm_ref?
2012-10-01 13:58:13 +00:00
%strong= event.ref_name
- else
= link_to project_commits_path(event.project, event.ref_name) do
2014-05-26 20:26:41 +00:00
%strong= event.ref_name
2012-10-01 13:58:13 +00:00
at
2013-10-10 09:14:21 +00:00
= link_to_project event.project
2012-10-01 13:58:13 +00:00
- if event.push_with_commits?
- project = event.project
.event-body
%ul.well-list.event_commits
2012-10-01 13:58:13 +00: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.commit_from, to: event.commit_to) do
%strong Compare → #{event.commit_from[0..7]}...#{event.commit_to[0..7]}