blob: 295cffde8dcc0237bb34526b43e32cdfe3bce83c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="website_page_content_tree" model="ir.ui.view">
<field name="name">website.page.content.tree</field>
<field name="model">website.page.content</field>
<field name="arch" type="xml">
<tree>
<field name="url_path"/>
</tree>
</field>
</record>
<record id="website_page_content_form" model="ir.ui.view">
<field name="name">website.page.content.form</field>
<field name="model">website.page.content</field>
<field name="arch" type="xml">
<form>
<sheet>
<group>
<group>
<field name="url_path" placeholder="/example/url"/>
</group>
</group>
<notebook>
<page string="Content" name="content">
<field name="content"/>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
<record id="website_page_content_action" model="ir.actions.act_window">
<field name="name">Website Page Content</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">website.page.content</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem
id="menu_website_page_content"
name="Website Page Content"
parent="website.menu_website_global_configuration"
sequence="3"
action="website_page_content_action"
/>
</odoo>
|