templates/report/backtrace/frames.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Mon, 09 Feb 2015 00:06:34 +0100
changeset 61 3a0ca02556da
parent 40 373c7f784bc2
child 78 0ebef32c34af
permissions -rw-r--r--
Add crash_data table to store the json Add searching on crashing backtrace function names Drop never used tables Bump DB schema version Requires PostgreSQL >= 9.4 for now (for jsonb)

%= 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
      %= $frame->module_name
    % end
    %= t td => (class => 'col-md-5') => begin
      %= $frame->function_name
    % end
    %= t td => (class => 'col-md-4') => begin
      %= $frame->file_link
    % end
  % end
  % });
% end