summaryrefslogtreecommitdiff
path: root/app/views/events/_event_last_push.html.haml
blob: de5634d3c55ac7f686fec452675313355273f1d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- if show_last_push_widget?(event)
  .event-last-push
    %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.
    .pull-right
      = link_to new_mr_path_from_push_event(event), title: "New Merge Request", class: "btn btn-create btn-small" do
        Create Merge Request
  %hr