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.

17 lines
1.0 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data noupdate="0">
  4. <record model="ir.ui.view" id="email_compose_message_wizard_inherit_form">
  5. <field name="name">mail.compose.message.form (mail_optional_autofollow)</field>
  6. <field name="model">mail.compose.message</field>
  7. <field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
  8. <field name="arch" type="xml">
  9. <xpath expr="//div[field[@name='partner_ids']]/span[2]" position="before">
  10. <field name="notify_followers" />
  11. </xpath>
  12. <xpath expr="//div[field[@name='partner_ids']]/span[2]" position="inside">
  13. <span attrs="{'invisible': [('notify_followers', '=', True)]}" style="color: red;"> - Warning : Followers will not be notified but they can access the notification directly from the document (if they are allowed to)</span>
  14. </xpath>
  15. </field>
  16. </record>
  17. </data>
  18. </openerp>