gitlabhq/app/views/events/_event_last_push.html.haml

17 lines
587 B
Plaintext
Raw Normal View History

2012-06-21 17:41:22 +02:00
- if show_last_push_widget?(event)
2012-06-12 16:43:16 +02:00
.event_lp
%div
= image_tag gravatar_icon(event.author_email), :class => "avatar"
2012-06-21 17:41:22 +02:00
%span Your pushed to
2012-06-12 16:43:16 +02:00
= 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.
2012-07-05 08:35:23 +02:00
= link_to new_mr_path_from_push_event(event), :title => "New Merge Request", :class => "btn small grouped primary" do
2012-06-21 17:41:22 +02:00
Create Merge Request