##// END OF EJS Templates
Obfuscates email address on user's account page using javascript....
Obfuscates email address on user's account page using javascript. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2072 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1871:713ce06e40cd
r2070:5f3f2e756b46
Show More
_sidebar.rhtml
24 lines | 1.0 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 />
<%= link_to l(:label_change_log), :controller => 'projects', :action => 'changelog', :id => @project %>
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795
<% planning_links = []
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Calendar....
r1796 planning_links << link_to_if_authorized(l(:label_calendar), :action => 'calendar', :project_id => @project)
Jean-Philippe Lang
Adds support for free ticket filtering and custom queries on Gantt chart....
r1795 planning_links << link_to_if_authorized(l(:label_gantt), :action => 'gantt', :project_id => @project)
planning_links.compact!
unless planning_links.empty? %>
<h3><%= l(:label_planning) %></h3>
<p><%= planning_links.join(' | ') %></p>
<% 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 <% end %>
Jean-Philippe Lang
Application layout refactored....
r736
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
Fixed custom query sidebar links broken by r1797 (#1899)....
r1871 <%= link_to 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 -%>
<% end -%>