%= 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