diff --git a/py-scripts/lf_report.py b/py-scripts/lf_report.py index ee2e2004..a87c8b33 100755 --- a/py-scripts/lf_report.py +++ b/py-scripts/lf_report.py @@ -79,6 +79,7 @@ class lf_report(): self.output_pdf=_output_pdf self.write_output_pdf = "" self.banner_html = "" + self.footer_html = "" self.graph_titles="" self.graph_image="" self.html = "" @@ -369,6 +370,29 @@ class lf_report(): """ self.html += setup_information + def build_footer(self): + self.footer_html = """ + + +
+ + + + """ + self.html += self.footer_html + def build_custom(self): self.html += self.custom_html @@ -434,6 +458,7 @@ if __name__ == "__main__": report.build_table() #report.build_all() + report.build_footer() html_file = report.write_html() print("returned file ")