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