mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-24 17:31:14 +00:00
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
19 lines
628 B
Plaintext
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) %>
|