@clarkej
The document link you have provide seem old.
ERPNext doesn't have option to define standard Footer. As a work around, you can use Terms and Condition master for footer.
Now, ERPNext provide feature to add standard footer, you can set it in letter head. Also if someone know jinjha, he can write custom custom html print format to add printed date and time
cc @Bhagyashree_Aher please fix this document with our document that explains how to add footer with date and time sample code
Thank you for catching and clarifying this Sambhaji
Please when you have time, would you review this below assuming you have past experience with list filter, to offer your opinion: the 'OR operator editor may have been broken from a change in say June - thank you How to filter Tasks on both Open OR Overdue Tasks - #6 by clarkej
File “/home/frappe/frappe-bench/apps/frappe/frappe/utils/jinja.py”, line 80, in render_template
return get_jenv().from_string(template).render(context)
File “/home/frappe/frappe-bench/env/lib/python3.6/site-packages/jinja2/asyncsupport.py”, line 76, in render
return original_render(self, *args, **kwargs)
File “/home/frappe/frappe-bench/env/lib/python3.6/site-packages/jinja2/environment.py”, line 1008, in render
return self.environment.handle_exception(exc_info, True)
File “/home/frappe/frappe-bench/env/lib/python3.6/site-packages/jinja2/environment.py”, line 780, in handle_exception
reraise(exc_type, exc_value, tb)
File “/home/frappe/frappe-bench/env/lib/python3.6/site-packages/jinja2/_compat.py”, line 37, in reraise
raise value.with_traceback(tb)
File "
Was searching for something similar today like this. Got same Jinja error. Below code works perfectly on V12 {{ frappe.utils.formatdate(doc.get_formatted('creation'), "dd-MM-yyyy") }}
There is a bug in the formatdate, because if you ask for MMMM. it will return the day.
For december 4, 2020, it returns “April”. taking the day for the month.