-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathwebsite.xml
30 lines (30 loc) · 1.06 KB
/
website.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of Tryton and Nereid. The COPYRIGHT file at the
top level of this repository contains the full copyright notices
and license terms.
-->
<tryton>
<data>
<record id="website_cart_info" model="ir.ui.view">
<field name="model">nereid.website</field>
<field name="inherit" ref="nereid.website_view_form"/>
<field name="arch" type="xml">
<![CDATA[
<data>
<xpath expr="/form/notebook/page[@id='general']/label[@name='timezone']"
position="before">
<label name="guest_user"/>
<field name="guest_user"/>
</xpath>
<xpath expr="/form/notebook/page[@id='catalog']"
position="inside">
<label name="channel"/>
<field name="channel"/>
</xpath>
</data>
]]>
</field>
</record>
</data>
</tryton>