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

_event.html.haml « events « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 191aed0747e0b3c39cb1bf775a6683bf72401523 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- if event.proper?
  %div.event-item
    %span.cgray.right
      #{time_ago_in_words(event.created_at)} ago.

    = image_tag gravatar_icon(event.author_email), class: "avatar s24"

    - if event.push?
      = render "events/event/push", event: event
      .clearfix
    - elsif event.note?
      = render "events/event/note", event: event
    - else
      = render "events/event/common", event: event