summaryrefslogtreecommitdiff
path: root/app/views/shared/_event_filter.html.haml
blob: 151aad306a0ac78132ab7d028eac31f1097c9903 (plain)
1
2
3
4
5
6
7
8
9
10
11
%ul.nav-links.event-filter.scrolling-tabs
  = event_filter_link EventFilter.all, _('All'), s_('EventFilterBy|Filter by all')
  - if event_filter_visible(:repository)
    = event_filter_link EventFilter.push, _('Push events'), s_('EventFilterBy|Filter by push events')
  - if event_filter_visible(:merge_requests)
    = event_filter_link EventFilter.merged, _('Merge events'), s_('EventFilterBy|Filter by merge events')
  - if event_filter_visible(:issues)
    = event_filter_link EventFilter.issue, _('Issue events'), s_('EventFilterBy|Filter by issue events')
  - if comments_visible?
    = event_filter_link EventFilter.comments, _('Comments'), s_('EventFilterBy|Filter by comments')
  = event_filter_link EventFilter.team, _('Team'), s_('EventFilterBy|Filter by team')