##// END OF EJS Templates
Translations updates....
Translations updates. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2751 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2521:9f4549993687
r2652:7f94e3446fe9
Show More
_sidebar.rhtml
26 lines | 1.3 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 />
Eric Davis
Added several useful hooks to the Issue sidebar...
r2091 <%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :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
<% planning_links = []
Jean-Philippe Lang
Adds controller to urls in case the side bar is called from another controller (#2960)....
r2521 planning_links << link_to(l(:label_calendar), :controller => 'issues', :action => 'calendar', :project_id => @project) if User.current.allowed_to?(:view_calendar, @project, :global => true)
planning_links << link_to(l(:label_gantt), :controller => 'issues', :action => 'gantt', :project_id => @project) if User.current.allowed_to?(:view_gantt, @project, :global => true)
Jean-Philippe Lang
Cross-project gantt and calendar (#1157)....
r2086 %>
<% unless planning_links.empty? %>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795 <h3><%= l(:label_planning) %></h3>
<p><%= planning_links.join(' | ') %></p>
Eric Davis
Added several useful hooks to the Issue sidebar...
r2091 <%= call_hook(:view_issues_sidebar_planning_bottom) %>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795 <% end %>
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 -%>