diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/website_slides/wizard/slide_channel_invite_views.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/website_slides/wizard/slide_channel_invite_views.xml')
| -rw-r--r-- | addons/website_slides/wizard/slide_channel_invite_views.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/addons/website_slides/wizard/slide_channel_invite_views.xml b/addons/website_slides/wizard/slide_channel_invite_views.xml new file mode 100644 index 00000000..d5c8e34b --- /dev/null +++ b/addons/website_slides/wizard/slide_channel_invite_views.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + <record id="slide_channel_invite_view_form" model="ir.ui.view"> + <field name="name">slide.channel.invite.view.form</field> + <field name="model">slide.channel.invite</field> + <field name="arch" type="xml"> + <form string="Compose Email"> + <group col="1"> + <group col="2"> + <field name="partner_ids" + widget="many2many_tags_email" + placeholder="Add existing contacts..." + context="{'force_email':True, 'show_email':True, 'no_create_edit': True}"/> + </group> + <group col="2"> + <field name="subject" placeholder="Subject..."/> + </group> + <field name="body" options="{'style-inline': true}"/> + <group> + <group> + <field name="attachment_ids" widget="many2many_binary"/> + </group> + <group> + <field name="template_id" label="Use template" context="{'default_model': 'slide.channel.partner'}"/> + </group> + </group> + </group> + <footer> + <button string="Send" name="action_invite" type="object" class="btn-primary"/> + <button string="Cancel" class="btn-secondary" special="cancel"/> + </footer> + </form> + </field> + </record> + </data> +</odoo> |
