diff -r 000000000000 -r 5b78b8c79d9c templates/index.html.ep --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/index.html.ep Tue May 01 23:34:48 2012 +0200 @@ -0,0 +1,16 @@ +% title 'Latest crashs'; +% layout 'main'; +%= t table => (class => 'table table-striped table-bordered table-condensed') => begin + + + Signature + Date + + +% foreach my $file(@$files) { + + <%= link_to $file->{uuid} => url_for('report', uuid => $file->{uuid}) =%> + %= t td => POSIX::strftime("%F %T", localtime($file->{date})) + +% } +% end