我正在使用odoo 9,我想扩展模板。 查看我的代码
<templates id="olims.cust_template" xml:space="preserve">
<t t-extend="web.UserMenu.about">
<t t-jquery=".container-fluid" t-operation="replace">
<div class="row">
-----my code here-----
</div>
</t>
</t>
</templates>
但是“关于菜单”中没有任何作用,代码有什么问题,有什么主意吗?
答案 0 :(得分:0)
1-使用<t t-extend="UserMenu.about">
扩展模板。
2-将清单{(web
)中的depends
添加到__openerp__.py
。
3-将'qweb': ["static/src/xml/*.xml"],
添加到清单中。
模板继承是通过t-extend指令执行的,该指令以要更改的模板名称作为参数。
您可以在QWEB上找到更多内容。