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