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.
 
 
 
 
 

55 lines
2.2 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- This XML defines views and actions related to Twilio SMS templates in Odoo. -->
<record id="twilio_sms_template_view_form" model="ir.ui.view">
<field name="name">twilio.sms.template.view.form</field>
<field name="model">twilio.sms.template</field>
<field name="arch" type="xml">
<form>
<sheet>
<div class="oe_title">
<label for="name" string="Name"/>
<h1>
<div class="d-flex">
<field class="text-break" name="name"/>
</div>
</h1>
</div>
<group>
<group>
<field name="content"/>
</group>
</group>
</sheet>
</form>
</field>
</record>
<!-- View for Twilio SMS template tree -->
<record id="twilio_sms_template_view_tree" model="ir.ui.view">
<field name="name">twilio.sms.template.view.tree</field>
<field name="model">twilio.sms.template</field>
<field name="arch" type="xml">
<tree name="twilio_template_tree">
<field name="name"/>
<field name="content"/>
</tree>
</field>
</record>
<!-- Action for Twilio SMS template window -->
<record id="twilio_sms_template_action" model="ir.actions.act_window">
<field name="name">SmS Template</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">twilio.sms.template</field>
<field name="view_mode">tree,form</field>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Generate Account Details
</p>
</field>
</record>
<!-- Menu item for Twilio SMS templates -->
<menuitem id="twilio_sms_template_menu" name="SmS Template"
parent="twilio_account_menu_do_stuff"
action="twilio_sms_template_action"
sequence="5"/>
</odoo>