diff -r e621317229f7 -r b69b7aa98a1d templates/index.html.ep --- a/templates/index.html.ep Wed Jul 30 23:49:59 2014 +0200 +++ b/templates/index.html.ep Sat Aug 02 23:46:30 2014 +0200 @@ -3,14 +3,22 @@ %= t table => (class => 'table table-striped table-bordered table-condensed') => begin - Signature + Product + Version + UserID + UUID Date -% foreach my $file(@$files) { +% foreach my $crash(@$files) { - <%= link_to $file->{uuid} => url_for('report', uuid => $file->{uuid}) =%> - %= t td => POSIX::strftime("%F %T", localtime($file->{date})) + %= t td => $crash->{product} + %= t td => $crash->{version} + %= t td => $crash->{user} + %= t td => (style => "font-family:monospace;") => begin + %= link_to $crash->{uuid} => url_for('report', uuid => $crash->{uuid}) + % end + %= t td => $crash->{date}->strftime("%F %T") % } % end