##// END OF EJS Templates
Forum list can be reordered with drag and drop (#12909)....
Forum list can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15337 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14111:035edd39c422
r14955:fb6b565a1ec9
Show More
_sidebar.html.erb
25 lines | 926 B | text/plain | TextLexer
/ app / views / issues / _sidebar.html.erb
Jean-Philippe Lang
Application layout refactored....
r736 <h3><%= l(:label_issue_plural) %></h3>
Jean-Philippe Lang
Use li tags for issue links in the sidebar (#13242)....
r11240
<ul>
<li><%= link_to l(:label_issue_view_all), _project_issues_path(@project, :set_filter => 1) %></li>
Jean-Philippe Lang
Global queries can be saved from the global issue list (follows r1311 and closes #897)....
r1297 <% if @project %>
Jean-Philippe Lang
Use li tags for issue links in the sidebar (#13242)....
r11240 <li><%= link_to l(:field_summary), project_issues_report_path(@project) %></li>
Jean-Philippe Lang
Cross-project gantt and calendar (#1157)....
r2086 <% end %>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795
Jean-Philippe Lang
Issue sidebar cleanup....
r3075 <% if User.current.allowed_to?(:view_calendar, @project, :global => true) %>
Jean-Philippe Lang
Use li tags for issue links in the sidebar (#13242)....
r11240 <li><%= link_to l(:label_calendar), _project_calendar_path(@project) %></li>
Jean-Philippe Lang
Issue sidebar cleanup....
r3075 <% end %>
<% if User.current.allowed_to?(:view_gantt, @project, :global => true) %>
Jean-Philippe Lang
Use li tags for issue links in the sidebar (#13242)....
r11240 <li><%= link_to l(:label_gantt), _project_gantt_path(@project) %></li>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795 <% end %>
Jean-Philippe Lang
Import issues from CSV file (#950)....
r14111
<% if User.current.allowed_to?(:import_issues, @project, :global => true) %>
<li><%= link_to l(:button_import), new_issues_import_path %></li>
<% end %>
Jean-Philippe Lang
Use li tags for issue links in the sidebar (#13242)....
r11240 </ul>
<%= call_hook(:view_issues_sidebar_issues_bottom) %>
Jean-Philippe Lang
Issue sidebar cleanup....
r3075 <%= call_hook(:view_issues_sidebar_planning_bottom) %>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795
Jean-Philippe Lang
Splits private/public issue queries in the sidebar (#1067)....
r4788 <%= render_sidebar_queries %>
Eric Davis
Added several useful hooks to the Issue sidebar...
r2091 <%= call_hook(:view_issues_sidebar_queries_bottom) %>