我正在尝试在odoo 12中使网站页面上的网站构建器模块中的按钮可用(创建新页面)。我应该在哪里声明此动作/按钮(模板除外)。现在,该按钮仅出现在模板上,但是什么也没有发生。
<template id="add_fields_product" inherit_id="website_sale.product">
<xpath expr="//div[@id='product_details']" position="before">
<link rel="stylesheet" href="/domain_sale/static/src/css/my.css"/>
<div class="alert alert-info" role="alert">
<div groups="base.group_system" name="module_website_sale" t-att-data-module-id="env.ref('base.module_website_sale').id" t-att-data-module-shortdesc="env.ref('base.module_website_sale').shortdesc">
<a href="#" data-action="new_page">
<p>New page</p>
</a>
</div>
</xpath>
</template>