templates/report/backtrace.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Tue, 20 Nov 2012 15:06:13 +0100
changeset 13 b5d8f0f977aa
parent 0 5b78b8c79d9c
child 25 1a1cf5c35cfb
permissions -rw-r--r--
Add install instruction

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