templates/report/modules.html.ep
changeset 36 703f1af889d1
parent 0 5b78b8c79d9c
equal deleted inserted replaced
35:093ea107a96f 36:703f1af889d1
     1 %= t table => (class => 'table table-striped table-bordered table-condensed') => begin
     1 %= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin
     2 <thead>
     2 <thead>
     3   <tr>
     3   <tr>
     4     <th>Filename</th>
     4     <th>Filename</th>
     5     <th>Version</th>
     5     <th>Version</th>
     6     <th>Debug Identifier</th>
     6     <th>Debug Identifier</th>
     7     <th>Debug Filename</th>
     7     <th>Debug Filename</th>
     8   </tr>
     8   </tr>
     9 </thead>
     9 </thead>
    10 % foreach my $module(@$modules) {
    10 % foreach my $module(@$modules) {
    11 <tr>
    11   %= t tr => begin
    12   %= t td => $module->{filename}
    12     %= t td => $module->{filename}
    13   %= t td => $module->{version}
    13     %= t td => $module->{version}
    14   %= t td => $module->{debug_id}
    14     %= t td => $module->{debug_id}
    15   %= t td => $module->{debug_file}
    15     %= t td => $module->{debug_file}
    16 </tr>
    16   % end
    17 % }
    17 % }
    18 % end 
    18 % end