我正在尝试为 odoo-8 网站制作一个新主题。按照odoo-theme-tutorial中的这些步骤。当通过扩展默认标题的步骤时,我没有得到预期的输出。我得到的只是一个页面 og 文本,既不应用 CSS 效果也不应用 JS。我不知道我错过了什么..任何帮助将不胜感激。这是我的代码:
在 openerp 文件中:
{
# Theme information
'name': "theme_businesscasual",
'description': """
""",
'category': 'Theme',
'version': '1.0',
'depends': ['website', 'website_less'],
# templates
'data': [
'views/layout.xml',
],
'application': True
}
在 layout.xml 文件中:
<!-- Customize header -->
<template id="custom_header" inherit_id="website.layout" name="Custom Header">
<!-- Assign an id -->
<xpath expr="//div[@id='wrapwrap']/header" position="attributes">
<attribute name="id">my_header</attribute>
</xpath>
<!-- Add an element after the top menu -->
<xpath expr="//div[@id='wrapwrap']/header/div" position="after">
<div class="container">
<div class="alert alert-info mt16" role="alert">
<strong>Welcome</strong> to our website!
</div>
</div>
</xpath>
</template>