odoo/addons/website/views/test.xml

43 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="template1" model="ir.ui.view">
<field name="name">template1</field>
<field name="type">form</field>
<field name="arch" type="xml">
<html>
<body>
<header>This is the header <t t-esc="1+1"/></header>
<header><span>This is the header</span> <t t-esc="1+1"/></header>
<div class="main">This is the main content</div>
<nav>
<ul class="menu_list">
<li>Home</li>
<li>About us</li>
</ul>
</nav>
</body>
</html>
</field>
</record>
<record id="template2" model="ir.ui.view">
<field name="name">template2</field>
<field name="inherit_id" ref="template1"/>
<field name="model">res.users</field>
<field name="arch" type="xml">
<data>
<xpath expr="(//ul/li)[last()]" position="after">
<li>Event</li>
</xpath>
<xpath expr="//div[@class='main']" position="inside">
<field name="name" />
</xpath>
</data>
</field>
</record>
</data>
</openerp>