summaryrefslogtreecommitdiff
path: root/app/views/events/event/_push.html.haml
blob: 4b645550517ce57550d480506fc50f56b3ea25fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.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 project_commits_path(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 project_compare_path(event.project, from: event.commit_from, to: event.commit_to) do
            %strong Compare → #{truncate_sha(event.commit_from)}...#{truncate_sha(event.commit_to)}