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

_event_last_push.html.haml « events « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb4a728ed3e8db76aa5c04da6ae77022fc3c443d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- if show_last_push_widget?(event)
  .event_lp
    %div
      = image_tag gravatar_icon(event.author_email), :class => "avatar"
      %span Your pushed to 
      = event.ref_type
      = link_to project_commits_path(event.project, :ref => event.ref_name) do
        %strong= event.ref_name
      at
      %strong= link_to event.project.name, event.project
      %span.cgray
        = time_ago_in_words(event.created_at)
        ago.

      = link_to new_mr_path_from_push_event(event), :title => "New Merge Request", :class => "btn very_small primary" do
        Create Merge Request