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

_event_filter.html.haml « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d07a9e2b92468860f9b77d3345b27dc6fff5e97c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%ul.nav.nav-pills.event_filter
  = event_filter_link EventFilter.push, 'Push events'
  = event_filter_link EventFilter.merged, 'Merge events'
  = event_filter_link EventFilter.comments, 'Comments'
  = event_filter_link EventFilter.team, 'Team'

  - if current_user
    - if current_controller?(:dashboard)
      %li.pull-right
        = link_to dashboard_path(:atom, { private_token: current_user.private_token }), class: 'rss-btn' do
          %i.fa.fa-rss
          News Feed

    - if current_controller?(:groups)
      %li.pull-right
        = link_to group_path(@group, { format: :atom, private_token: current_user.private_token }), title: "Feed", class: 'rss-btn' do
          %i.fa.fa-rss
          News Feed
%hr