mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-24 12:06:11 +10:00
Clean up admin dashboad tooltips Clean up admin dashboad tooltips Clean up admin dashboad tooltips Add helper method change to use app helper Modify tooltips to use new helper Convert remaining times Adjust one tooltip
16 lines
496 B
Plaintext
16 lines
496 B
Plaintext
- if event.proper?
|
|
.event-item{class: "#{event.body? ? "event-block" : "event-inline" }"}
|
|
%span.cgray.pull-right
|
|
#{time_ago_with_tooltip(event.created_at)} ago
|
|
|
|
= cache event do
|
|
= image_tag avatar_icon(event.author_email, 24), class: "avatar s24", alt:''
|
|
|
|
- if event.push?
|
|
= render "events/event/push", event: event
|
|
- elsif event.note?
|
|
= render "events/event/note", event: event
|
|
- else
|
|
= render "events/event/common", event: event
|
|
|