templates/report/backtrace/frames.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Wed, 02 May 2012 21:43:53 +0200
changeset 2 873ceb7769a8
parent 0 5b78b8c79d9c
child 3 2ff78fe4abda
permissions -rw-r--r--
Display client info

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