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.

35 lines
1.4 KiB

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--Copyright 2016-2017 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
  3. Copyright 2019 Artem Rafailov <https://it-projects.info/team/Ommo73/>
  4. License MIT (https://opensource.org/licenses/MIT).-->
  5. <template>
  6. <t t-extend="mail.chatter.Buttons">
  7. <t t-jquery="button[title='Send a message']" t-operation="after">
  8. <button
  9. class="btn btn-link oe_compose_post_private"
  10. title="Send a message to specified recipients only"
  11. >
  12. Send internal message
  13. </button>
  14. </t>
  15. </t>
  16. <t t-extend="mail.chatter.Composer">
  17. <t t-jquery="small[class='o_chatter_composer_info']" t-operation="replace">
  18. <small class="o_chatter_composer_info" t-if="!widget.options.is_private">
  19. To: Followers of
  20. <t t-if="widget.options.record_name">
  21. &quot;<t t-esc="widget.options.record_name" />&quot;
  22. </t>
  23. <t t-if="!widget.options.record_name">this document</t>
  24. </small>
  25. </t>
  26. <t t-jquery="div[class='o_composer_suggested_partners']" t-operation="after">
  27. <button
  28. class="btn btn-link oe_composer_uncheck"
  29. t-if="widget.options.is_private"
  30. >
  31. Uncheck all
  32. </button>
  33. </t>
  34. </t>
  35. </template>