Reportgenerator: optionale table class und hr aus table genommen
authorSven Schöling <s.schoeling@linet-services.de>
Wed, 5 Feb 2014 10:06:09 +0000 (11:06 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Tue, 4 Mar 2014 15:16:36 +0000 (16:16 +0100)
SL/ReportGenerator.pm
templates/webpages/report_generator/html_report.html

index e965e44..09ab7bd 100644 (file)
@@ -401,6 +401,7 @@ sub prepare_html_content {
     'EXPORT_NEXTSUB'       => $self->{export}->{nextsub},
     'DATA_PRESENT'         => $self->{data_present},
     'CONTROLLER_DISPATCH'  => $opts->{controller_class},
+    'TABLE_CLASS'          => $opts->{table_class},
   };
 
   return $variables;
index 2b169ab..c2fe759 100644 (file)
@@ -27,7 +27,7 @@
 
  [% IF DATA_PRESENT %]
  <p>
-  <table width="100%">
+  <table [% IF TABLE_CLASS %]class="[% TABLE_CLASS %]"[% END %] width="100%">
    [%- FOREACH row = HEADER_ROWS %]
    <tr>
     [% FOREACH col = row %]
@@ -76,9 +76,8 @@
     [% END %]
    [% END %]
 
-   <tr><td colspan="[% NUM_COLUMNS %]"><hr size="3" noshade></td></tr>
-
   </table>
+  <hr size="3" noshade>
  </p>
  [% ELSE %]
   <p class="message_hint">[% 'No data was found.' | $T8 %]</p>