summaryrefslogtreecommitdiff
path: root/app/views/events/_event_last_push.html.haml
blob: 2c2f270cf6c2aa8b7ce72c9bd3e62c2af3b5238f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- if show_last_push_widget?(event)
  .event_lp
    %span You pushed to
    = link_to project_commits_path(event.project, event.ref_name) do
      %strong= truncate(event.ref_name, length: 28)
    at
    %strong= link_to_project event.project
    %span
      = time_ago_in_words(event.created_at)
      ago.

    = link_to new_mr_path_from_push_event(event), title: "New Merge Request", class: "btn btn-new-mr" do
      Create Merge Request