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: afe42b334ba9cf9fca48060f34496c49f89276a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- event = last_push_event
- if event && show_last_push_widget?(event)
  .row-content-block.top-block.d-none.d-sm-block.white
    .event-last-push
      .event-last-push-text
        %span= s_("LastPushEvent|You pushed to")
        %strong
          = link_to event.ref_name, project_commits_path(event.project, event.ref_name), class: 'ref-name'

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

        #{time_ago_with_tooltip(event.created_at)}

      - if can?(current_user, :create_merge_request_in, event.project.default_merge_request_target)
        .flex-right
          = link_to new_mr_path_from_push_event(event), title: _("New merge request"), class: "btn gl-button btn-info btn-sm qa-create-merge-request" do
            #{ _('Create merge request') }