Compare commits

...

1 Commits

Author SHA1 Message Date
dispread
a2cd83b7d3 Fixed indentation
Pretty sure the previous wasnt the intended result as it would show the "this is new" in a new kanban card. This just groups it with the property it belongs to.

X-original-commit: 407534595a
2023-09-25 13:38:57 +02:00

View File

@@ -83,9 +83,9 @@ conditionally, we can use the ``t-if`` directive (see :ref:`reference/qweb/condi
<t t-name="kanban-box">
<div class="oe_kanban_global_click">
<field name="name"/>
</div>
<div t-if="record.state.raw_value == 'new'">
This is new!
<div t-if="record.state.raw_value == 'new'">
This is new!
</div>
</div>
</t>
</templates>