##// END OF EJS Templates
Adds controller to urls in case the side bar is called from another controller (#2960)....
Jean-Philippe Lang -
r2521:9f4549993687
parent child
Show More
@@ -7,8 +7,8
7 <%= call_hook(:view_issues_sidebar_issues_bottom) %>
7 <%= call_hook(:view_issues_sidebar_issues_bottom) %>
8
8
9 <% planning_links = []
9 <% planning_links = []
10 planning_links << link_to(l(:label_calendar), :action => 'calendar', :project_id => @project) if User.current.allowed_to?(:view_calendar, @project, :global => true)
10 planning_links << link_to(l(:label_calendar), :controller => 'issues', :action => 'calendar', :project_id => @project) if User.current.allowed_to?(:view_calendar, @project, :global => true)
11 planning_links << link_to(l(:label_gantt), :action => 'gantt', :project_id => @project) if User.current.allowed_to?(:view_gantt, @project, :global => true)
11 planning_links << link_to(l(:label_gantt), :controller => 'issues', :action => 'gantt', :project_id => @project) if User.current.allowed_to?(:view_gantt, @project, :global => true)
12 %>
12 %>
13 <% unless planning_links.empty? %>
13 <% unless planning_links.empty? %>
14 <h3><%= l(:label_planning) %></h3>
14 <h3><%= l(:label_planning) %></h3>
General Comments 0
You need to be logged in to leave comments. Login now