Hi,
I'm creating my first qweb report and when I do this :
<span t-field="o.date_start" t-field-options='{"format": "d-MM-Y h:m"}'/>
It prints a different hour from the hour displayed in the form view to my user, I think that prints the time of the server and not the time in the timezone of the user .
In v7 we can use the:
<para style="P2">[[ setLang(o.partner_id.lang) ]]</para>
<para style="terp_default_Centre_8">[[ formatLang(o.date,date_time=True) ]]</para>
How can we do this in v8 (qweb)?
Thanks