-
- Downloads
[IMP] web: extend qweb to allow dynamic templates in t-call
Before this change the t-call can use only receive a literal as parameters: <t t-call="template.name17" /> This call render the template 'template.name17' with the current context. Now, we can defined an expression with braces (same syntax that t-attf): <t t-call="template.name{{ 10 + 7 }}" /> This call render the template 'template.name17' with the current context. This change allows for greater flexibility for applications using qweb. (The performance due to this change is unchanged during rendering time.)
Showing
- addons/web/static/lib/qweb/qweb-test-call.xml 5 additions, 0 deletionsaddons/web/static/lib/qweb/qweb-test-call.xml
- addons/web/static/lib/qweb/qweb2.js 2 additions, 2 deletionsaddons/web/static/lib/qweb/qweb2.js
- odoo/addons/base/ir/ir_qweb/qweb.py 1 addition, 1 deletionodoo/addons/base/ir/ir_qweb/qweb.py
Loading
Please register or sign in to comment