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.
38 lines
1.3 KiB
38 lines
1.3 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<!-- SMS Group form view -->
|
|
<record id="sms_group_view_form" model="ir.ui.view">
|
|
<field name="name">sms.group.view.form</field>
|
|
<field name="model">sms.group</field>
|
|
<field name="arch" type="xml">
|
|
<form string="SMS">
|
|
<sheet>
|
|
<h1>
|
|
<field name="name" readonly="True"/>
|
|
</h1>
|
|
<group>
|
|
<group>
|
|
<field name="name"/>
|
|
<field name="description"/>
|
|
</group>
|
|
<group>
|
|
<field name="partner_ids" widget="many2many_tags"/>
|
|
</group>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<!-- SMS Group view action -->
|
|
<record id="sms_group_action"
|
|
model="ir.actions.act_window">
|
|
<field name="name">SMS</field>
|
|
<field name="res_model">sms.group</field>
|
|
<field name="view_mode">tree,form</field>
|
|
<field name="help" type="html">
|
|
<p class="o_view_nocontent_smiling_face">
|
|
No groups found. Let's create one!
|
|
</p>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|