Hello,
During Checking Qweb change for v10 come across below issue.
<t t-set="r_name" t-value="dynamic value from field"/>
If i check with t-if tag it work
<t t-if="r_name == condition "/>
But if I want to call the dynamic template which set in variable r_name than it will give below error.
<t t-call="{ r_name }"/>
Note :- Above code work fine in v9. After check in detail come to know that in v9 before t-call it will parse the variable value and than call but in v10 it just pass as it is. It is issue in v10 Qweb?