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
|
when :project
|
||||||
link_to(h(value), :controller => 'projects', :action => 'show', :id => value)
|
link_to(h(value), :controller => 'projects', :action => 'show', :id => value)
|
||||||
when :assigned_to
|
when :assigned_to
|
||||||
link_to(h(value), :controller => 'account', :action => 'show', :id => value)
|
link_to_user value
|
||||||
when :author
|
when :author
|
||||||
link_to(h(value), :controller => 'account', :action => 'show', :id => value)
|
link_to_user value
|
||||||
when :done_ratio
|
when :done_ratio
|
||||||
progress_bar(value, :width => '80px')
|
progress_bar(value, :width => '80px')
|
||||||
when :fixed_version
|
when :fixed_version
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<h3><%= role.name %></h3>
|
<h3><%= role.name %></h3>
|
||||||
<ul>
|
<ul>
|
||||||
<% members[role].each do |m| %>
|
<% 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 %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user