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.
25 lines
1.1 KiB
25 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- wizard view -->
|
|
<record model="ir.ui.view" id="mail_wizard_recipient_form">
|
|
<field name="name">Add Recipients</field>
|
|
<field name="model">mail.wizard.recipient</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Add Followers">
|
|
<group>
|
|
<field name="partner_id"
|
|
placeholder="Add contacts to notify..."
|
|
options="{'no_quick_create': True}"
|
|
context="{'show_email': True, 'form_view_ref': 'base.view_partner_simple_form'}"/>
|
|
</group>
|
|
<footer>
|
|
<button string="Add Recipients"
|
|
name="add_recipients" type="object"
|
|
class="btn-primary" data-hotkey="q"/>
|
|
<button string="Cancel" class="btn-secondary"
|
|
special="cancel" data-hotkey="x"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|