| author | Vincent Tondellier <tonton+hg@team1664.org> |
| Sun, 14 Feb 2016 23:47:24 +0100 | |
| changeset 103 | 95f4e3c47dd4 |
| parent 78 | 0ebef32c34af |
| child 104 | b75005d8b002 |
| permissions | -rw-r--r-- |
| 0 | 1 |
% title 'crash report'; |
2 |
% layout 'main'; |
|
3 |
||
|
103
95f4e3c47dd4
Add product, version and group at the top of the crash report page
Vincent Tondellier <tonton+hg@team1664.org>
parents:
78
diff
changeset
|
4 |
%= t div => (class => 'panel panel-default') => begin |
|
95f4e3c47dd4
Add product, version and group at the top of the crash report page
Vincent Tondellier <tonton+hg@team1664.org>
parents:
78
diff
changeset
|
5 |
%= t div => (class => 'panel-heading') => begin |
|
95f4e3c47dd4
Add product, version and group at the top of the crash report page
Vincent Tondellier <tonton+hg@team1664.org>
parents:
78
diff
changeset
|
6 |
%= t h3 => (class => 'panel-title') => "Crash for $processed_data->{client_info}->{ProductName} $processed_data->{client_info}->{Version}"
|
|
95f4e3c47dd4
Add product, version and group at the top of the crash report page
Vincent Tondellier <tonton+hg@team1664.org>
parents:
78
diff
changeset
|
7 |
% end |
|
95f4e3c47dd4
Add product, version and group at the top of the crash report page
Vincent Tondellier <tonton+hg@team1664.org>
parents:
78
diff
changeset
|
8 |
%= t div => (class => 'panel-body') => begin |
|
95f4e3c47dd4
Add product, version and group at the top of the crash report page
Vincent Tondellier <tonton+hg@team1664.org>
parents:
78
diff
changeset
|
9 |
%= link_to "In crash group \"" . $crash_group->{title} . "\"" => url_for('group', uuid => $crash_group->{uuid})
|
|
95f4e3c47dd4
Add product, version and group at the top of the crash report page
Vincent Tondellier <tonton+hg@team1664.org>
parents:
78
diff
changeset
|
10 |
% end |
|
95f4e3c47dd4
Add product, version and group at the top of the crash report page
Vincent Tondellier <tonton+hg@team1664.org>
parents:
78
diff
changeset
|
11 |
% end |
|
95f4e3c47dd4
Add product, version and group at the top of the crash report page
Vincent Tondellier <tonton+hg@team1664.org>
parents:
78
diff
changeset
|
12 |
|
| 0 | 13 |
%= t div => (class => 'tabbable') => begin |
14 |
%= t ul => (class => 'nav nav-tabs', id => 'report-tabs') => begin |
|
15 |
%= t li => (class => 'active') => begin |
|
16 |
%= t a => (href => '#backtrace', 'data-toggle' => 'tab') => 'Backtrace' |
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
17 |
% end |
| 0 | 18 |
%= t li => begin |
19 |
%= t a => (href => '#details', 'data-toggle' => 'tab') => 'Details' |
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
20 |
% end |
| 0 | 21 |
%= t li => begin |
22 |
%= t a => (href => '#modules', 'data-toggle' => 'tab') => 'Modules' |
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
23 |
% end |
|
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
24 |
% end |
| 0 | 25 |
|
26 |
%= t div => (class => 'tab-content') => begin |
|
27 |
%= 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
|
28 |
%= include('report/backtrace', crashing_thread => $crashing_thread, threads => $threads);
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
29 |
% end |
| 0 | 30 |
%= 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
|
31 |
%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin |
|
78
0ebef32c34af
Refactor everything
Vincent Tondellier <tonton+hg@team1664.org>
parents:
37
diff
changeset
|
32 |
%= include('report/crash_info', crash_info => $processed_data->{crash_info});
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
33 |
%= include('report/client_info', client_info => $processed_data->{client_info});
|
| 0 | 34 |
%= 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
|
35 |
% end |
|
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
36 |
% end |
| 0 | 37 |
%= t div => (class => 'tab-pane', id => 'modules') => begin |
38 |
%= include('report/modules', modules => $processed_data->{modules});
|
|
|
2
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
39 |
% end |
|
873ceb7769a8
Display client info
Vincent Tondellier <tonton+hg@team1664.org>
parents:
0
diff
changeset
|
40 |
% end |
| 0 | 41 |
% end |