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