diff -r 6f411821b12b -r e4e5cfaf5814 templates/group/_stats.html.ep --- a/templates/group/_stats.html.ep Sat Feb 20 18:36:00 2016 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -

Crashs by product and version

-
-%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin - - - Product - Version - Count - - - -% my $max; -% foreach my $stat(@{$stats_by_product_and_version}) { - % $max = $stat->{crash_count} unless defined($max); - %= t tr => begin - %= t td => $stat->{product_name} - %= t td => $stat->{version} - %= t td => begin - %= stats_bar($stat->{crash_count}, $max) - % end - % end -% } - -% end -
-