##// END OF EJS Templates
Fixes users links....
Jean-Philippe Lang -
r2876:e64fb6a72874
parent child
Show More
@@ -45,9 +45,9 module QueriesHelper
45 45 when :project
46 46 link_to(h(value), :controller => 'projects', :action => 'show', :id => value)
47 47 when :assigned_to
48 link_to(h(value), :controller => 'account', :action => 'show', :id => value)
48 link_to_user value
49 49 when :author
50 link_to(h(value), :controller => 'account', :action => 'show', :id => value)
50 link_to_user value
51 51 when :done_ratio
52 52 progress_bar(value, :width => '80px')
53 53 when :fixed_version
@@ -7,7 +7,7
7 7 <h3><%= role.name %></h3>
8 8 <ul>
9 9 <% members[role].each do |m| %>
10 <li><%= link_to m.name, :controller => 'account', :action => 'show', :id => m.user %> (<%= format_date m.created_on %>)</li>
10 <li><%= link_to_user m.user %> (<%= format_date m.created_on %>)</li>
11 11 <% end %>
12 12 </ul>
13 13 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now