templates/report/modules.html.ep
changeset 36 703f1af889d1
parent 0 5b78b8c79d9c
--- a/templates/report/modules.html.ep	Thu Aug 07 23:51:40 2014 +0200
+++ b/templates/report/modules.html.ep	Thu Aug 07 23:56:47 2014 +0200
@@ -1,4 +1,4 @@
-%= t table => (class => 'table table-striped table-bordered table-condensed') => begin
+%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin
 <thead>
   <tr>
     <th>Filename</th>
@@ -8,11 +8,11 @@
   </tr>
 </thead>
 % foreach my $module(@$modules) {
-<tr>
-  %= t td => $module->{filename}
-  %= t td => $module->{version}
-  %= t td => $module->{debug_id}
-  %= t td => $module->{debug_file}
-</tr>
+  %= t tr => begin
+    %= t td => $module->{filename}
+    %= t td => $module->{version}
+    %= t td => $module->{debug_id}
+    %= t td => $module->{debug_file}
+  % end
 % }
-% end 
+% end