mirror of
https://github.com/redmine/redmine.git
synced 2026-01-08 16:42:54 +01:00
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:
@@ -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 %>
|
||||
|
||||
Reference in New Issue
Block a user