BigW Consortium Gitlab

_last_push.html.haml 651 Bytes
Newer Older
1 2 3 4 5 6
- event = last_push_event
- if event && show_last_push_widget?(event)
  .row-content-block.top-block.hidden-xs.white
    .event-last-push
      .event-last-push-text
        %span You pushed to
Douwe Maan committed
7
        %strong
8
          = link_to event.ref_name, project_commits_path(event.project, event.ref_name), class: 'ref-name'
9 10 11 12 13 14 15 16 17

        - if event.project != @project
          %span at
          %strong= link_to_project event.project

        #{time_ago_with_tooltip(event.created_at)}

      .pull-right
        = link_to new_mr_path_from_push_event(event), title: "New merge request", class: "btn btn-info btn-sm" do
18
          #{ _('Create merge request') }