Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_last_push.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 859f065377d7af851b3ab8839614e03ca61a6b10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- event = last_push_event
- if event && show_last_push_widget?(event)
  = render Pajamas::AlertComponent.new(variant: :success,
    alert_options: { class: 'gl-mt-3' },
    close_button_options: { class: 'js-close-banner' }) do |c|
    = c.body do
      %span= s_("LastPushEvent|You pushed to")
      %strong.gl-display-inline-flex.gl-max-w-50p{ data: { toggle: 'tooltip' }, title: event.ref_name }
        = link_to event.ref_name, project_commits_path(event.project, event.ref_name), class: 'ref-name gl-text-truncate'

      - if event.project != @project
        %span= s_("LastPushEvent|at")
        %strong= link_to_project event.project

      #{time_ago_with_tooltip(event.created_at)}

    - if create_mr_button_from_event?(event)
      = c.actions do
        = render Pajamas::ButtonComponent.new(variant: :confirm, href: create_mr_path_from_push_event(event), button_options: { class: 'qa-create-merge-request' }) do
          = _('Create merge request')