9e9ce95d62
Conflicts: app/views/dashboard/_project.html.haml app/views/events/event/_common.html.haml app/views/explore/projects/_project.html.haml app/views/groups/_projects.html.haml app/views/projects/_home_panel.html.haml app/views/projects/_issues_nav.html.haml app/views/projects/issues/_discussion.html.haml app/views/projects/issues/_issues.html.haml app/views/projects/issues/show.html.haml app/views/projects/merge_requests/_discussion.html.haml app/views/projects/merge_requests/_show.html.haml app/views/projects/milestones/index.html.haml app/views/projects/notes/_edit_form.html.haml app/views/shared/_issuable_filter.html.haml
25 lines
1,016 B
Text
25 lines
1,016 B
Text
.event-title
|
|
%span.author_name= link_to_author event
|
|
%span.event_label.pushed #{event.action_name} #{event.ref_type}
|
|
- if event.rm_ref?
|
|
%strong= event.ref_name
|
|
- else
|
|
= link_to namespace_project_commits_path(event.project.namespace, event.project, event.ref_name) do
|
|
%strong= event.ref_name
|
|
at
|
|
= link_to_project event.project
|
|
|
|
- if event.push_with_commits?
|
|
- project = event.project
|
|
.event-body
|
|
%ul.well-list.event_commits
|
|
- 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 namespace_project_compare_path(event.project.namespace, event.project, from: event.commit_from, to: event.commit_to) do
|
|
%strong Compare → #{truncate_sha(event.commit_from)}...#{truncate_sha(event.commit_to)}
|