Does anyone know where a full list of all the format options available to the dateFormat template function can be found i know of at least one (MMMM for full month name) not listed here
full list of date time format options?
Collapse
X
-
-
thanks for that, how did you find the extra info about date formatting? if there a reason it wasn't in the https://docs.espocrm.com/development...app-date-time/ page?for Pdf
and here is the list of all date format
https://docs.espocrm.com/administrat...te-formatting/Comment
-
Comment
-
Yes they are supported - the format params on the function accept any format. see below
PHP Code:{{dateFormat createdAt_RAW format='DD.MM.YYYY'}} <br>
{{dateFormat createdAt_RAW format='MM/DD/YYYY'}} <br>
{{dateFormat createdAt_RAW format='YYYY-MM-DD'}} <br>
{{dateFormat createdAt_RAW format='DD. MM. YYYY'}}
this above generate result below
10.09.2025
09/10/2025
2025-09-10
10. 09. 2025Comment

Comment