_push.html.haml 1.17 KB
Newer Older
1 2
.event-title
  %span.author_name= link_to_author event
3
  %span.event_label.pushed #{event.action_name} #{event.ref_type}
4
  - if event.rm_ref?
5
    %strong= event.ref_name
6
  - else
Vinnie Okada's avatar
Vinnie Okada committed
7
    = link_to namespace_project_commits_path(event.project.namespace, event.project, event.ref_name) do
8
      %strong= event.ref_name
9
  at
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
10
  = link_to_project event.project
11 12 13 14

- if event.push_with_commits?
  - project = event.project
  .event-body
15
    %ul.well-list.event_commits
16 17 18 19 20 21 22 23
      - 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.
24 25 26 27 28 29 30 31
          - if event.md_ref?
            - from = event.commit_from
            - from_label = truncate_sha(from)
          - else
            - from = event.project.default_branch
            - from_label = from
          = link_to namespace_project_compare_path(event.project.namespace, event.project, from: from, to: event.commit_to) do
            %strong Compare → #{from_label}...#{truncate_sha(event.commit_to)}