Commit 72b090b8 authored by Douwe Maan's avatar Douwe Maan

Move activity feed buttons out of event_filter into actual show views.

parent cba86eed
= render "events/event_last_push", event: @last_push
- if current_user
%ul.nav.nav-pills.event_filter.pull-right
%li.pull-right
= link_to dashboard_path(:atom, { private_token: current_user.private_token }), class: 'rss-btn' do
%i.fa.fa-rss
News Feed
= render 'shared/event_filter'
%hr
.content_list
= spinner
......@@ -17,7 +17,17 @@
%section.activities.col-md-8
- if current_user
= render "events/event_last_push", event: @last_push
- if current_user
%ul.nav.nav-pills.event_filter.pull-right
%li
= 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
= render 'shared/event_filter'
%hr
.content_list
= spinner
%aside.side.col-md-4
......
......@@ -40,6 +40,7 @@
%section.col-md-9
= render "events/event_last_push", event: @last_push
= render 'shared/event_filter'
%hr
.content_list
= spinner
%aside.col-md-3.project-side
......
......@@ -3,17 +3,3 @@
= 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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment