##// END OF EJS Templates
add mail footer test (#13482)...
add mail footer test (#13482) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11720 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11240:e37ee0d21b1b
r11490:9fea2ab6d224
Show More
_sidebar.html.erb
21 lines | 772 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
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) %>