reptar
12/12/2023, 10:43 PMDavid B
12/12/2023, 11:45 PM?string['d/MMM/yyyy']
doesn't seem to be a real freemarker bulit-in (string types have a string built-in, but not dates)
however the last/5th method ?date("d/MMM/yyyy")
should work if dateCreated
is actually a string (as per the string ?date built-in) *AND the dateCreated
string is actually in the format "d/MMM/yyyy"David B
12/12/2023, 11:46 PMdateCreated?is_date
and dateCreated?is_string
?reptar
12/13/2023, 4:12 PM