Index: app/views/reports/_details.rhtml =================================================================== --- app/views/reports/_details.rhtml (revision 1163) +++ app/views/reports/_details.rhtml (working copy) @@ -43,6 +43,29 @@ <% end %> + + + Totals: + <% for status in @statuses %> + <%= aggregate_link data, { "status_id" => status.id }, + :controller => 'issues', :action => 'index', :project_id => @project, + :set_filter => 1, + "status_id" => status.id %> + <% end %> + <%= aggregate_link data, { "closed" => 0 }, + :controller => 'issues', :action => 'index', :project_id => @project, + :set_filter => 1, + "status_id" => "o" %> + <%= aggregate_link data, { "closed" => 1 }, + :controller => 'issues', :action => 'index', :project_id => @project, + :set_filter => 1, + "status_id" => "c" %> + <%= aggregate_link data, { }, + :controller => 'issues', :action => 'index', :project_id => @project, + :set_filter => 1, + "status_id" => "*" %> + + <% end reset_cycle %> \ No newline at end of file Index: app/views/reports/_simple.rhtml =================================================================== --- app/views/reports/_simple.rhtml (revision 1163) +++ app/views/reports/_simple.rhtml (working copy) @@ -32,6 +32,23 @@ <% end %> + + + Totals: + <%= aggregate_link data, { "closed" => 0 }, + :controller => 'issues', :action => 'index', :project_id => @project, + :set_filter => 1, + "status_id" => "o" %> + <%= aggregate_link data, { "closed" => 1 }, + :controller => 'issues', :action => 'index', :project_id => @project, + :set_filter => 1, + "status_id" => "c" %> + <%= aggregate_link data, { }, + :controller => 'issues', :action => 'index', :project_id => @project, + :set_filter => 1, + "status_id" => "*" %> + + <% end reset_cycle %> \ No newline at end of file Index: public/stylesheets/application.css =================================================================== --- public/stylesheets/application.css (revision 1163) +++ public/stylesheets/application.css (working copy) @@ -83,6 +83,7 @@ table.list td { overflow: hidden; text-overflow: ellipsis; vertical-align: top;} table.list td.id { width: 2%; text-align: center;} table.list td.checkbox { width: 15px; padding: 0px;} +table.list tfoot td { background-color:#EEEEEE; padding: 4px; white-space:nowrap; } tr.issue { text-align: center; white-space: nowrap; } tr.issue td.subject, tr.issue td.category { white-space: normal; }