You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.2 KiB
28 lines
1.2 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- View of seo attributes menu -->
|
|
<record id="website_seo_attributes_view_tree" model="ir.ui.view">
|
|
<field name="name">website.seo.attributes.view.tree</field>
|
|
<field name="model">website.seo.attributes</field>
|
|
<field name="arch" type="xml">
|
|
<tree editable="bottom">
|
|
<field name="name"/>
|
|
<field name="models"/>
|
|
<field name="product" invisible="models != 'product'"/>
|
|
<field name="category" invisible="models != 'product_category'"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
<!-- Action of seo attribute menu -->
|
|
<record id="action_website_seo_attributes_views" model="ir.actions.act_window">
|
|
<field name="name">SEO Attributes</field>
|
|
<field name="res_model">website.seo.attributes</field>
|
|
<field name="view_mode">tree</field>
|
|
</record>
|
|
<menuitem id="website_seo_attributes_menu_seo_attributes"
|
|
name="SEO Attributes"
|
|
sequence="60"
|
|
parent="website.menu_site"
|
|
action="action_website_seo_attributes_views"
|
|
groups="website.group_website_designer"/>
|
|
</odoo>
|
|
|