How format date in WATI message template in ERPNext?

I’m trying to format date in WATI message template. Normal jinja trick we use in print format or email template is not working there. Is there any other way? Please help.

You can try this :

{{ frappe.utils.formatdate(yourstartdate, 'dd-MM-YYYY') }}

1 Like