diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-13 17:00:59 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-13 17:00:59 +0000 |
commit | b3f3634df3de06aedca35f57a9565a7d791c4d48 (patch) | |
tree | d1799bb8735234ab6452decc61c7cca1c3ebdff5 /app/views/reports/_details.rhtml | |
parent | 29c623fa5855ff029fc856ecbcf5947c020bd839 (diff) | |
download | redmine-b3f3634df3de06aedca35f57a9565a7d791c4d48.tar.gz redmine-b3f3634df3de06aedca35f57a9565a7d791c4d48.zip |
On the issue report page, 0 issue counts are now displayed as dashes.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@629 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/reports/_details.rhtml')
-rw-r--r-- | app/views/reports/_details.rhtml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/reports/_details.rhtml b/app/views/reports/_details.rhtml index 6a2888eaa..e16095e2b 100644 --- a/app/views/reports/_details.rhtml +++ b/app/views/reports/_details.rhtml @@ -19,23 +19,23 @@ :set_filter => 1, "#{field_name}" => row.id %></td> <% for status in @statuses %> - <td align="center"><%= link_to (aggregate data, { field_name => row.id, "status_id" => status.id }), + <td align="center"><%= aggregate_link data, { field_name => row.id, "status_id" => status.id }, :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)), :set_filter => 1, "status_id" => status.id, "#{field_name}" => row.id %></td> <% end %> - <td align="center"><%= link_to (aggregate data, { field_name => row.id, "closed" => 0 }), + <td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)), :set_filter => 1, "#{field_name}" => row.id, "status_id" => "o" %></td> - <td align="center"><%= link_to (aggregate data, { field_name => row.id, "closed" => 1 }), + <td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)), :set_filter => 1, "#{field_name}" => row.id, "status_id" => "c" %></td> - <td align="center"><%= link_to (aggregate data, { field_name => row.id }), + <td align="center"><%= aggregate_link data, { field_name => row.id }, :controller => 'projects', :action => 'list_issues', :id => ((row.is_a?(Project) ? row : @project)), :set_filter => 1, "#{field_name}" => row.id, |