18 lines
696 B
Text
18 lines
696 B
Text
- 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= s_("LastPushEvent|You pushed to")
|
|
%strong
|
|
= link_to event.ref_name, project_commits_path(event.project, event.ref_name), class: 'ref-name'
|
|
|
|
- if event.project != @project
|
|
%span= s_("LastPushEvent|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') }
|