diff -r 000000000000 -r 5b78b8c79d9c templates/report/backtrace/frames.html.ep --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/report/backtrace/frames.html.ep Tue May 01 23:34:48 2012 +0200 @@ -0,0 +1,18 @@ +%= t table => (class => 'table table-striped table-bordered table-condensed') => begin + + + Frame + Module + Signature + Source + + +% foreach my $frame(@$frames) { + + %= t td => $frame->{frame} + %= t td => $frame->{module} + %= t td => $frame->{function} + %= t td => (File::Spec->splitpath($frame->{file}))[-1] + +% } +% end