##// END OF EJS Templates
Merged r3897 from trunk....
Merged r3897 from trunk. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@3900 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3581:e65c3cfc7df3
r3786:59f98693ae47
Show More
_sidebar.rhtml
23 lines | 1.1 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Application layout refactored....
r736 <h3><%= l(:label_issue_plural) %></h3>
Jean-Philippe Lang
Fixed: 'View all issues' link doesn't work on issues/show....
r924 <%= link_to l(:label_issue_view_all), { :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 } %><br />
Jean-Philippe Lang
Global queries can be saved from the global issue list (follows r1311 and closes #897)....
r1297 <% if @project %>
Jean-Philippe Lang
Application layout refactored....
r736 <%= link_to l(:field_summary), :controller => 'reports', :action => 'issue_report', :id => @project %><br />
Jean-Philippe Lang
Cross-project gantt and calendar (#1157)....
r2086 <% end %>
Eric Davis
Added several useful hooks to the Issue sidebar...
r2091 <%= call_hook(:view_issues_sidebar_issues_bottom) %>
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) %>
<%= link_to(l(:label_calendar), :controller => 'issues', :action => 'calendar', :project_id => @project) %><br />
<% end %>
<% if User.current.allowed_to?(:view_gantt, @project, :global => true) %>
Eric Davis
Refactor: Move gantts to a separate controller....
r3581 <%= link_to(l(:label_gantt), :controller => 'gantts', :action => 'show', :project_id => @project) %><br />
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795 <% end %>
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
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% unless sidebar_queries.empty? -%>
Jean-Philippe Lang
Application layout refactored....
r736 <h3><%= l(:label_query_plural) %></h3>
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% sidebar_queries.each do |query| -%>
Jean-Philippe Lang
Escape query names (#2379)....
r2167 <%= link_to(h(query.name), :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query) %><br />
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% end -%>
Eric Davis
Added several useful hooks to the Issue sidebar...
r2091 <%= call_hook(:view_issues_sidebar_queries_bottom) %>
Jean-Philippe Lang
Queries can be marked as 'For all projects'. Such queries will be available on all projects and on the global issue list (#897, closes #671)....
r1296 <% end -%>