debian-mirror-gitlab/app/views/projects/_last_push.html.haml

20 lines
844 B
Text
Raw Normal View History

2017-09-10 17:25:29 +05:30
- event = last_push_event
- if event && show_last_push_widget?(event)
2018-11-08 19:23:39 +05:30
.row-content-block.top-block.d-none.d-sm-block.white
2017-09-10 17:25:29 +05:30
.event-last-push
.event-last-push-text
2018-03-17 18:26:18 +05:30
%span= s_("LastPushEvent|You pushed to")
2017-09-10 17:25:29 +05:30
%strong
= link_to event.ref_name, project_commits_path(event.project, event.ref_name), class: 'ref-name'
2015-09-25 12:07:36 +05:30
2017-09-10 17:25:29 +05:30
- if event.project != @project
2018-03-17 18:26:18 +05:30
%span= s_("LastPushEvent|at")
2017-09-10 17:25:29 +05:30
%strong= link_to_project event.project
#{time_ago_with_tooltip(event.created_at)}
2018-05-09 12:01:36 +05:30
- if can?(current_user, :create_merge_request_in, event.project.default_merge_request_target)
.flex-right
2021-03-11 19:13:27 +05:30
= link_to new_mr_path_from_push_event(event), title: _("New merge request"), class: "btn gl-button btn-info btn-sm qa-create-merge-request" do
2018-05-09 12:01:36 +05:30
#{ _('Create merge request') }