diff --git a/app/views/issues/_sidebar.html.erb b/app/views/issues/_sidebar.html.erb
index 38d682b04..11174d357 100644
--- a/app/views/issues/_sidebar.html.erb
+++ b/app/views/issues/_sidebar.html.erb
@@ -1,16 +1,3 @@
-
<%= l(:label_issue_plural) %>
-
-
-- <%= link_to l(:label_issue_view_all), _project_issues_path(@project, :set_filter => 1) %>
-<% if @project %>
-- <%= link_to l(:field_summary), project_issues_report_path(@project) %>
-<% end %>
-
-<% if User.current.allowed_to?(:import_issues, @project, :global => true) %>
-- <%= link_to l(:button_import), new_issues_import_path %>
-<% end %>
-
-
<%= call_hook(:view_issues_sidebar_issues_bottom) %>
<%= call_hook(:view_issues_sidebar_planning_bottom) %>
diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb
index 5efc22205..7000c5e55 100644
--- a/app/views/issues/index.html.erb
+++ b/app/views/issues/index.html.erb
@@ -52,6 +52,18 @@
<%= link_to_function l(:button_cancel), "hideModal(this);" %>
<% end %>
+
+ <%= actions_dropdown do %>
+ <%= link_to l(:label_issue_view_all), _project_issues_path(@project, :set_filter => 1) %>
+
+ <% if @project %>
+ <%= link_to l(:field_summary), project_issues_report_path(@project) %>
+ <% end %>
+
+ <% if User.current.allowed_to?(:import_issues, @project, :global => true) %>
+ <%= link_to l(:button_import), new_issues_import_path %>
+ <% end %>
+ <% end %>
<% end %>