想要在日期字段之间添加更多 space

Want to add more space between date field

当我打印 qweb 报告时,我想在日期字段之间添加更多 space:Day - Month - Year

怎么办?

当前代码:

<span t-field="o.con_date" t-field-options="{&quot;format&quot;: &quot;dd MM yyyy&quot;}"></span>

这解决了问题。 我这里做的很简单(之前没想到)

我已经将 ddmmyyyy 分开了。

&#160; 用于在它们之间创建空格。 如果你需要额外的空间,你可以添加更多 &#160;

<span t-field="o.con_date" t-field-options="{&quot;format&quot;: &quot;dd &quot;}"/>&#160;<span t-field="o.con_date" t-field-options="{&quot;format&quot;: &quot;MM &quot;}"/>&#160;<span t-field="o.con_date" t-field-options="{&quot;format&quot;: &quot;yyyy &quot;}"/>&#160;