templates/report/backtrace/frames.html.ep
changeset 108 e4e5cfaf5814
parent 107 6f411821b12b
child 109 3b95550f4189
--- a/templates/report/backtrace/frames.html.ep	Sat Feb 20 18:36:00 2016 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin
-  %= t thead => begin
-    %= t tr => begin
-      %= t th => "Frame"
-      %= t th => "Module"
-      %= t th => (class => "signature-column") => "Signature"
-      %= t th => "Source"
-    %= end
-  %= end
-  % $thread->each_frame(sub { my $frame = shift;
-  %= t tr => begin
-    %= t td => (class => 'col-md-1') => begin
-      %= $frame->frame_number
-    %  end
-    %= t td => (class => 'col-md-2') => begin
-      %= module_warnings($frame)
-      %= $frame->module_name
-    % end
-    %= t td => (class => 'col-md-5') => begin
-      %= frame_warnings($frame)
-      %= $frame->function_name
-    % end
-    %= t td => (class => 'col-md-4') => begin
-      %= $frame->file_link
-    % end
-  % end
-  % });
-% end