# HG changeset patch # User Vincent Tondellier # Date 1407016130 -7200 # Node ID debc3c56699479d302b81753d1f994f759f6dd81 # Parent 1a1cf5c35cfb76d467b8fe119df3c6883f47c0c4# Parent b69b7aa98a1d692e98b54effadd2a3b7dd11ce19 Merge SQL module diff -r b69b7aa98a1d -r debc3c566994 templates/report/backtrace.html.ep --- a/templates/report/backtrace.html.ep Sat Aug 02 23:46:30 2014 +0200 +++ b/templates/report/backtrace.html.ep Sat Aug 02 23:48:50 2014 +0200 @@ -4,8 +4,15 @@

All threads

+ % my $thread_id = 0; % foreach my $thread(@$threads) { - %= include 'report/backtrace/frames', frames => $thread->{frames} + %= t a => ( 'data-toggle' => "collapse", href => "#backtrace-thread-$thread_id" ) => begin + %= t h4 => "Thread $thread_id" + % end + %= t div => ( id => "backtrace-thread-$thread_id", class => "collapse in" ) => begin + %= include 'report/backtrace/frames', frames => $thread->{frames} + % $thread_id = $thread_id + 1; + % end % }