templates/report/modules.html.ep
changeset 108 e4e5cfaf5814
parent 107 6f411821b12b
child 109 3b95550f4189
equal deleted inserted replaced
107:6f411821b12b 108:e4e5cfaf5814
     1 %= t table => (class => 'table table-striped table-hover 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   %= t tr => begin
       
    12     %= t td => $module->{filename}
       
    13     %= t td => $module->{version}
       
    14     %= t td => $module->{debug_id}
       
    15     %= t td => $module->{debug_file}
       
    16   % end
       
    17 % }
       
    18 % end