gitlab-org--gitlab-foss/app/views/events/_event_last_push.html.haml

15 lines
613 B
Plaintext
Raw Normal View History

2012-06-21 15:41:22 +00:00
- if show_last_push_widget?(event)
2016-04-25 20:02:15 +00:00
.row-content-block.clear-block.last-push-widget
.event-last-push
.event-last-push-text
%span You pushed to
2016-03-11 20:53:27 +00:00
= link_to namespace_project_commits_path(event.project.namespace, event.project, event.ref_name), title: h(event.project.name) do
%strong= event.ref_name
%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
Create Merge Request