templates/report/backtrace.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Sat, 06 Apr 2013 21:08:10 +0200
changeset 17 c91535b1db3e
parent 0 5b78b8c79d9c
child 25 1a1cf5c35cfb
permissions -rw-r--r--
Move the decoding to a module, and had config to choose which module

<a data-toggle="collapse" href="#backtrace-crashing-thread"><h3>Crashing thread top frames</h3></a>
<div id="backtrace-crashing-thread" class="collapse in">
  %= include 'report/backtrace/frames', frames => $crashing_thread->{frames}
</div>
<a data-toggle="collapse" href="#backtrace-all-threads"><h3>All threads</h3></a>
<div id="backtrace-all-threads" class="collapse in">
  % foreach my $thread(@$threads) {
  %= include 'report/backtrace/frames', frames => $thread->{frames}
  % }
</div>