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

15 lines
482 B
Plaintext
Raw Normal View History

2012-06-21 15:41:22 +00:00
- if show_last_push_widget?(event)
2013-07-17 12:48:22 +00:00
.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.
2013-07-16 21:46:27 +00:00
.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
2013-07-17 12:48:22 +00:00
%hr