Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_last_push.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0a3e416db7122a564c9fc34103fd0259789198e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- if event = last_push_event
  - if show_last_push_widget?(event)

    .gray-content-block.top-block.clear-block.hidden-xs
      .event-last-push
        .event-last-push-text
          %span You pushed to
          = link_to namespace_project_commits_path(event.project.namespace, event.project, event.ref_name) do
            %strong= event.ref_name
          branch
          #{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