templates/report/modules.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Tue, 11 Nov 2014 21:35:24 +0100
changeset 54 2218a127abd9
parent 36 703f1af889d1
permissions -rw-r--r--
Fix deprecated warnings for Mojo::JSON OO syntax with Mojolicious >= 5.54
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