Chameleon and Datetime localization of a dexterity field

Hi all,
on a Plone5 instance I've made a dexterity content type. Two of it fields are declared as "schema.Date".
When I render the object on the pagetemplate I'm writing with Chameleon, I obtain an "year-month-day" format, while I need a more "eu friendly" format: day-month-year.

What's the best way to achive this?
Vito

http://docs.plone.org/develop/plone/misc/datetime.html

Apart from that: check the strpftime() implementation for datetime and date objects in the Python docs.

-aj

1 Like

By using the moment mockup pattern ?
http://plone.github.io/mockup/dev/#pattern/moment

1 Like