Footer in report view

Hi.
How it possible to add footer to the report print view?

@NMyshuk see this:

https://frappe.io/docs/user/en/guides/reports-and-printing/print-format-for-reports

Hi, thanks for your answer but this guide doesn’t have any information about footer

You need to create your_report.html and use jinja templating to modifiy your print view

Hello @NMyshuk,

You can customized standard.html file using Jinja template.

override_whitelisted_methods = {
“frappe.templates.print_formats.standard”:
“tax_invoice.tax_invoice.templates.print_formats.standard”,
}

Thanks.