Fixes users links.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2990 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e117dc8c9c
commit
e64fb6a728
|
@ -45,9 +45,9 @@ module QueriesHelper
|
|||
when :project
|
||||
link_to(h(value), :controller => 'projects', :action => 'show', :id => value)
|
||||
when :assigned_to
|
||||
link_to(h(value), :controller => 'account', :action => 'show', :id => value)
|
||||
link_to_user value
|
||||
when :author
|
||||
link_to(h(value), :controller => 'account', :action => 'show', :id => value)
|
||||
link_to_user value
|
||||
when :done_ratio
|
||||
progress_bar(value, :width => '80px')
|
||||
when :fixed_version
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<h3><%= role.name %></h3>
|
||||
<ul>
|
||||
<% members[role].each do |m| %>
|
||||
<li><%= link_to m.name, :controller => 'account', :action => 'show', :id => m.user %> (<%= format_date m.created_on %>)</li>
|
||||
<li><%= link_to_user m.user %> (<%= format_date m.created_on %>)</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
<% end %>
|
||||
|
|
Loading…
Reference in New Issue