| author | Vincent Tondellier <tonton+hg@team1664.org> |
| Fri, 08 Aug 2014 00:02:55 +0200 | |
| changeset 38 | 6fa3cf9cf915 |
| parent 37 | 013953be0f3b |
| child 78 | 0ebef32c34af |
| permissions | -rw-r--r-- |
| 0 | 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' |
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
8 |
% end |
| 0 | 9 |
%= t li => begin |
10 |
%= t a => (href => '#details', 'data-toggle' => 'tab') => 'Details' |
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
11 |
% end |
| 0 | 12 |
%= t li => begin |
13 |
%= t a => (href => '#modules', 'data-toggle' => 'tab') => 'Modules' |
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
14 |
% end |
|
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
15 |
% end |
| 0 | 16 |
|
17 |
%= t div => (class => 'tab-content') => begin |
|
18 |
%= t div => (class => 'tab-pane active', id => 'backtrace') => begin |
|
|
37
013953be0f3b
Add a new backtrace-processing filter stack
Vincent Tondellier <tonton+hg@team1664.org>
parents:
2
diff
changeset
|
19 |
%= include('report/backtrace', crashing_thread => $crashing_thread, threads => $threads);
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
20 |
% end |
| 0 | 21 |
%= t div => (class => 'tab-pane', id => 'details') => begin |
|
37
013953be0f3b
Add a new backtrace-processing filter stack
Vincent Tondellier <tonton+hg@team1664.org>
parents:
2
diff
changeset
|
22 |
%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin |
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
23 |
%= include('report/client_info', client_info => $processed_data->{client_info});
|
| 0 | 24 |
%= include('report/system_info', system_info => $processed_data->{system_info});
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
25 |
% end |
|
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
26 |
% end |
| 0 | 27 |
%= t div => (class => 'tab-pane', id => 'modules') => begin |
28 |
%= include('report/modules', modules => $processed_data->{modules});
|
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
29 |
% end |
|
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
30 |
% end |
| 0 | 31 |
% end |