diff -r 6f411821b12b -r e4e5cfaf5814 templates/groups/index.html.ep --- a/templates/groups/index.html.ep Sat Feb 20 18:36:00 2016 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,34 +0,0 @@ -% title 'Top crashs'; -% layout 'main'; -%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin - - - Title - Count - First version seen - Last version seen - Products - % foreach my $extra_col(@$extra_columns) { - %= t th => $extra_col->{name} - % } - - -% foreach my $crash(@$crashs) { - %= t tr => begin - %= t td => begin - %= link_to $crash->{title} => url_for('group', uuid => $crash->{uuid}) - % end - %= t td => $crash->{crash_count} - %= t td => $crash->{first_version} - %= t td => $crash->{last_version} - %= t td => $crash->{product_names} - % foreach my $extra_col(@$extra_columns) { - %= t td => $crash->{$extra_col->{id}} - % } - % end -% } -% end - -% if($pager->first_page != $pager->last_page) { - %= bootstrap_pagination($pager->current_page, $pager->last_page); -% }