| author | Vincent Tondellier <tonton+hg@team1664.org> |
| Tue, 16 Feb 2016 23:17:21 +0100 | |
| changeset 106 | 97bf7ebb6e44 |
| parent 105 | d7258a3a926c |
| permissions | -rw-r--r-- |
|
88
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
1 |
% title "Crash for \"$group->{title}\"";
|
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
2 |
% layout 'main'; |
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
3 |
<h2>Crashs for <%= $group->{title} %></h2>
|
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
4 |
|
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
5 |
%= t div => (class => 'tabbable') => begin |
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
6 |
%= t ul => (class => 'nav nav-tabs', id => 'report-tabs') => begin |
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
7 |
%= t li => (class => 'active') => begin |
|
105
d7258a3a926c
Invert list and stats to avoid bug with pagination
Vincent Tondellier <tonton+hg@team1664.org>
parents:
88
diff
changeset
|
8 |
%= t a => (href => '#reports', 'data-toggle' => 'tab') => 'Reports' |
|
88
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
9 |
% end |
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
10 |
%= t li => begin |
|
105
d7258a3a926c
Invert list and stats to avoid bug with pagination
Vincent Tondellier <tonton+hg@team1664.org>
parents:
88
diff
changeset
|
11 |
%= t a => (href => '#stats', 'data-toggle' => 'tab') => 'Statistics' |
|
88
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
12 |
% end |
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
13 |
% end |
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
14 |
|
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
15 |
%= t div => (class => 'tab-content') => begin |
|
105
d7258a3a926c
Invert list and stats to avoid bug with pagination
Vincent Tondellier <tonton+hg@team1664.org>
parents:
88
diff
changeset
|
16 |
%= t div => (class => 'tab-pane active', id => 'reports') => begin |
|
d7258a3a926c
Invert list and stats to avoid bug with pagination
Vincent Tondellier <tonton+hg@team1664.org>
parents:
88
diff
changeset
|
17 |
%= include('reports/_list', crashs => $crashs, extra_columns => $extra_columns, pager => $pager);
|
|
88
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
18 |
% end |
|
105
d7258a3a926c
Invert list and stats to avoid bug with pagination
Vincent Tondellier <tonton+hg@team1664.org>
parents:
88
diff
changeset
|
19 |
%= t div => (class => 'tab-pane', id => 'stats') => begin |
|
d7258a3a926c
Invert list and stats to avoid bug with pagination
Vincent Tondellier <tonton+hg@team1664.org>
parents:
88
diff
changeset
|
20 |
%= include('group/_stats', stats_by_product_and_version => $stats_by_product_and_version);
|
|
88
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
21 |
% end |
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
22 |
% end |
|
c82f5589db11
Add first cut of the crash grouping feature
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
23 |
% end |