Hello all,
In a qweb report I have this code to format a date :
<span t-esc="formatLang(data['form']['date_start'],date=True)"/>
It displays the date like this : 18.11.2015
But I want the month in letter like this : 18 novembre 2015
I have tried many things.
How could I get this format please?
UPDATE #1
With the print date of the report, this one works well :
<strong>Print Date</strong> :<br/>
<span t-esc="time.strftime('%e %B %Y')" />