##// END OF EJS Templates
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
Use css pseudo-classes instead of cycle("odd", "even") (#15361). Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16249 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15696:01c22299684c
r15867:9814dcf231b5
Show More
_sidebar.html.erb
18 lines | 628 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
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
Display the list of saved queries in the sidebar (#14790)....
r15260 <%= render_sidebar_queries(IssueQuery, @project) %>
Eric Davis
Added several useful hooks to the Issue sidebar...
r2091 <%= call_hook(:view_issues_sidebar_queries_bottom) %>