Index: app/views/reports/_details.html.erb =================================================================== --- app/views/reports/_details.html.erb (revision 16111) +++ app/views/reports/_details.html.erb (working copy) @@ -24,6 +24,29 @@ <% end %> + + + <%= l(:label_total_plural) %>: + <% 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 %> Index: app/views/reports/_simple.html.erb =================================================================== --- app/views/reports/_simple.html.erb (revision 16111) +++ app/views/reports/_simple.html.erb (working copy) @@ -18,6 +18,23 @@ <% end %> + + + <%= l(:label_total_plural) %>: + <%= 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 %> Index: public/stylesheets/application.css =================================================================== --- public/stylesheets/application.css (revision 16111) +++ public/stylesheets/application.css (working copy) @@ -270,6 +270,7 @@ tr.issue.idnt-9 td.subject {padding-left: 152px; background-position: 136px 50%;} table.issue-report {table-layout:fixed;} +table.issue-report.list tfoot td { background-color:#EEEEEE; padding-top: 4px; padding-bottom: 4px; white-space:nowrap; font-weight: bold;} tr.entry { border: 1px solid #f8f8f8; } tr.entry td { white-space: nowrap; }