Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
40069 Zobrazení

Hi, 

I want to write a simple comparison expression in qweb (if age<16 then do something). But unfortunately, i can't use a smaller symbol "<".

 <t t-if="student.age < 16">
do something .......
</t>


Please help!!!

Avatar
Zrušit
Nejlepší odpověď

XML has just five special characters, all they has corresponding codes:

 &lt; (<), &amp; (&), &gt; (>), &quot; ("), and &apos; (').

you've to use &lt; xml code of <, from above list:

<t t-if="student.age &lt; 16">
do something .......
</t>

Avatar
Zrušit

Quite strange though, I can use the normal characters without encoding them. I know its best practice to encode so but still strange that this doesn't work for thavorac.

maybe it works without encoding in some cases. I tried once to use in odoo domain statement in XML a & symbol as AND operator, it doesn't worked, then reverted back to encoded version: & amp ; and it started working. since I'm using only encoded versions of these 5 characters, to be sure...

Guess I'll always use encoding from now on then!

You may need to use &amp;lt; instead of &lt;

A similar expression for other special characters.

Related Posts Odpovědi Zobrazení Aktivita
1
čvc 25
1728
1
kvě 25
1733
1
dub 25
2294
1
úno 25
1575
0
říj 24
1350