templates/report/backtrace/frames.html.ep
changeset 0 5b78b8c79d9c
child 3 2ff78fe4abda
--- /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
+<thead>
+  <tr>
+    <th>Frame</th>
+    <th>Module</th>
+    <th>Signature</th>
+    <th>Source</th>
+  </tr>
+</thead>
+% foreach my $frame(@$frames) {
+<tr>
+  %= t td => $frame->{frame}
+  %= t td => $frame->{module}
+  %= t td => $frame->{function}
+  %= t td => (File::Spec->splitpath($frame->{file}))[-1]
+</tr>
+% }
+% end