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.
27 lines
1.0 KiB
27 lines
1.0 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Theme fasion wizard tree view -->
|
|
<record id="xtream_testimonials_tree" model="ir.ui.view">
|
|
<field name="name">xtream.testimonials.tree</field>
|
|
<field name="model">xtream.testimonials</field>
|
|
<field name="arch" type="xml">
|
|
<list editable="bottom">
|
|
<field name="partner_id"/>
|
|
<field name="testimony"/>
|
|
</list>
|
|
</field>
|
|
</record>
|
|
<!-- To set action -->
|
|
<record id="xtream_testimonials_action" model="ir.actions.act_window">
|
|
<field name="name">Xtream Testimonials</field>
|
|
<field name="res_model">xtream.testimonials</field>
|
|
<field name="view_mode">list</field>
|
|
</record>
|
|
<!-- To add menu in website configuration -->
|
|
<menuitem id="menu_xtream_testimonials"
|
|
name="Xtream Testimonials"
|
|
action="xtream_testimonials_action"
|
|
parent="website.menu_website_global_configuration"
|
|
sequence="25"
|
|
/>
|
|
</odoo>
|
|
|