equal
deleted
inserted
replaced
|
1 % title 'crash report'; |
|
2 % layout 'main'; |
|
3 |
|
4 %= t div => (class => 'tabbable') => begin |
|
5 %= t ul => (class => 'nav nav-tabs', id => 'report-tabs') => begin |
|
6 %= t li => (class => 'active') => begin |
|
7 %= t a => (href => '#backtrace', 'data-toggle' => 'tab') => 'Backtrace' |
|
8 % end |
|
9 %= t li => begin |
|
10 %= t a => (href => '#details', 'data-toggle' => 'tab') => 'Details' |
|
11 % end |
|
12 %= t li => begin |
|
13 %= t a => (href => '#modules', 'data-toggle' => 'tab') => 'Modules' |
|
14 % end |
|
15 % end |
|
16 |
|
17 %= t div => (class => 'tab-content') => begin |
|
18 %= t div => (class => 'tab-pane active', id => 'backtrace') => begin |
|
19 %= include('report/backtrace', crashing_thread => $processed_data->{crashing_thread}, threads => $processed_data->{threads}); |
|
20 % end |
|
21 %= t div => (class => 'tab-pane', id => 'details') => begin |
|
22 %= include('report/system_info', system_info => $processed_data->{system_info}); |
|
23 % end |
|
24 %= t div => (class => 'tab-pane', id => 'modules') => begin |
|
25 %= include('report/modules', modules => $processed_data->{modules}); |
|
26 % end |
|
27 % end |
|
28 % end |