templates/report/modules.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Sun, 14 Feb 2016 23:20:44 +0100
changeset 102 396528bdb9ad
parent 36 703f1af889d1
permissions -rw-r--r--
Allow showing a group by the uuid of any of it's individual crash This removes the dependency on insertion order. Also split Group::stats_by_product_and_version from get
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36
703f1af889d1 Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents: 0
diff changeset
     1
%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin
0
5b78b8c79d9c Initial commit
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     2
<thead>
5b78b8c79d9c Initial commit
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     3
  <tr>
5b78b8c79d9c Initial commit
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     4
    <th>Filename</th>
5b78b8c79d9c Initial commit
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     5
    <th>Version</th>
5b78b8c79d9c Initial commit
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     6
    <th>Debug Identifier</th>
5b78b8c79d9c Initial commit
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     7
    <th>Debug Filename</th>
5b78b8c79d9c Initial commit
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     8
  </tr>
5b78b8c79d9c Initial commit
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
     9
</thead>
5b78b8c79d9c Initial commit
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    10
% foreach my $module(@$modules) {
36
703f1af889d1 Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents: 0
diff changeset
    11
  %= t tr => begin
703f1af889d1 Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents: 0
diff changeset
    12
    %= t td => $module->{filename}
703f1af889d1 Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents: 0
diff changeset
    13
    %= t td => $module->{version}
703f1af889d1 Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents: 0
diff changeset
    14
    %= t td => $module->{debug_id}
703f1af889d1 Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents: 0
diff changeset
    15
    %= t td => $module->{debug_file}
703f1af889d1 Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents: 0
diff changeset
    16
  % end
0
5b78b8c79d9c Initial commit
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff changeset
    17
% }
36
703f1af889d1 Add highlight on mouse hover to tables
Vincent Tondellier <tonton+hg@team1664.org>
parents: 0
diff changeset
    18
% end