File: _push.html.haml

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (47 lines) | stat: -rw-r--r-- 1,641 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
- project = event.project

= icon_for_profile_event(event)

= event_user_info(event)

.event-title.gl-flex
  = inline_event_icon(event)
  .event-title-block.gl-inline-block.gl-mr-2
    %span.event-type.pushed{ class: user_profile_activity_classes }= event.push_activity_description
    - unless event.batch_push?
      %span
        - commits_link = project_commits_path(project, event.ref_name)
        = link_to_if event.linked_to_reference?, event.ref_name, commits_link, class: 'ref-name'

    = render "events/event_scope", event: event

- if event.push_with_commits?
  .event-body
    %ul.content-list.event-commits
      = render "events/commit", project: project, event: event

      - create_mr = event.new_ref? && create_mr_button_from_event?(event) && event.authored_by?(current_user)
      - if event.commits_count > 1
        %li.commits-stat
          %span ... and #{pluralize(event.commits_count - 1, 'more commit')}.

          - if event.md_ref?
            - from = event.commit_from
            - from_label = truncate_sha(from)
          - else
            - from = project.default_branch
            - from_label = from

          = link_to project_compare_path(project, from: from, to: event.commit_to) do
            %span Compare
            %span.commit-sha #{from_label}...#{truncate_sha(event.commit_to)}

          - if create_mr
            %span
              or
              = link_to create_mr_path_from_push_event(event) do
                create a merge request
      - elsif create_mr
        %li.commits-stat
          = link_to create_mr_path_from_push_event(event) do
            Create merge request