1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 17:31:14 +00:00
redmine/app/views/issues/_sidebar.html.erb
Jean-Philippe Lang 01c2229968 Removes gantt and calendar links from the sidebar.
They now have their own menu items that show up on cross-project views (r15983).

git-svn-id: http://svn.redmine.org/redmine/trunk@16078 e93f8b46-1217-0410-a6f0-8f06a7374b81
2016-12-16 07:54:51 +00:00

19 lines
628 B
Plaintext

<h3><%= l(:label_issue_plural) %></h3>
<ul>
<li><%= link_to l(:label_issue_view_all), _project_issues_path(@project, :set_filter => 1) %></li>
<% if @project %>
<li><%= link_to l(:field_summary), project_issues_report_path(@project) %></li>
<% end %>
<% if User.current.allowed_to?(:import_issues, @project, :global => true) %>
<li><%= link_to l(:button_import), new_issues_import_path %></li>
<% end %>
</ul>
<%= call_hook(:view_issues_sidebar_issues_bottom) %>
<%= call_hook(:view_issues_sidebar_planning_bottom) %>
<%= render_sidebar_queries(IssueQuery, @project) %>
<%= call_hook(:view_issues_sidebar_queries_bottom) %>