diff -r 6f411821b12b -r e4e5cfaf5814 templates/reports/_list.html.ep --- a/templates/reports/_list.html.ep Sat Feb 20 18:36:00 2016 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin - - - Product - Version - UUID - % foreach my $extra_col(@$extra_columns) { - %= t th => $extra_col->{name} - % } - Date - - -% foreach my $crash(@$crashs) { - %= t tr => begin - %= t td => $crash->{p_name} - %= t td => ($crash->{p_version} or "") - %= t td => (style => "font-family:monospace;") => begin - %= link_to $crash->{uuid} => url_for('report', uuid => $crash->{uuid}) - % end - % foreach my $extra_col(@$extra_columns) { - %= t td => $crash->{$extra_col->{id}} - % } - %= t td => date_from_db_utc($crash->{crash_time}) - % end -% } -% end - -% if($pager->first_page != $pager->last_page) { - %= bootstrap_pagination($pager->current_page, $pager->last_page); -% }